A Food and drink forum. FoodBanter.com

Welcome to FoodBanter.com forums which provide access to the finest food and drink related newsgroups.

You are currently viewing our boards as a guest which gives you limited access to view most newsgroup discussions and access our other FREE features. By joining our free community you will have access to post topics to the food related newsgroups, communicate privately with other FoodBanter.com members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact support.

Go Back   Home » FoodBanter.com forum » Drinking » Winemaking
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Winemaking (rec.crafts.winemaking) Discussion of the process, recipes, tips, techniques and general exchange of lore on the process, methods and history of wine making. Includes traditional grape wines, sparkling wines & champagnes.

Modifying kit wines



 
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 05-04-2004, 08:34 PM
Alfonse
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Hello all,
I was wondering how many of you "modify" your kit wines. I want to
experiment with such things as adding elderberries, more sugar, more
concentrate (from another similar kit), maybe some black peppercorns,
tannins, oaks etc, etc. Does anybody have a favorite recipe that they would
like to share?
My experimentation would be with red wines only.
Thanks,
Al


  #2 (permalink)  
Old 05-04-2004, 09:49 PM
Matthew Givens
Usenet poster
 
Posts: n/a
Default Modifying kit wines

I made a Grand Cru White Zinfandel, and when secondary fermentation was
finished and I racked it to another carboy, I added 1-4 oz bottle of
Raspberry Beer Flavoring. It turned out so good that I not only made a
second batch, but also tried two other batches with apple and blackberry
flavoring. The apple had to be sweetened, and the blackberry isn't ready to
taste, yet. But it seems to work quite well.

And you know how some kits have oak powder to add to your kit? Well, if you
think that a different flavor will help your wine, there's no reason not to
add it. I'm thinking of adding cinnamon (via cinnamon sticks) flavoring
into some of my kit wines. Of course, the big risk is that you're wrong and
the flavor of the kit doesn't mix with whatever you add.



"Alfonse" wrote in message
. ..
Hello all,
I was wondering how many of you "modify" your kit wines. I want to
experiment with such things as adding elderberries, more sugar, more
concentrate (from another similar kit), maybe some black peppercorns,
tannins, oaks etc, etc. Does anybody have a favorite recipe that they

would
like to share?
My experimentation would be with red wines only.
Thanks,
Al




  #3 (permalink)  
Old 06-04-2004, 11:43 AM
glad heart
Usenet poster
 
Posts: n/a
Default Modifying kit wines

I've added sugar to bring SG to a more desirable level. Any
amelioration is fair but remember watch your chemistry and make
adjustments. If an already balanced kit is compromised you'll be
doing yourself no flavours, er I mean favours.
  #4 (permalink)  
Old 07-04-2004, 02:07 PM
Michael Lawson
Usenet poster
 
Posts: n/a
Default Modifying kit wines

I've seen in Winemaker where the BK guy (Tim Vandegrift) has
recommended adding sugar to BK's Pinot Selection kit to pump
up the alcohol to more Burgundy levels, and switching out the
oak for toasted French oak. Never tried it, so I can't comment.

--Mike L.

"glad heart" wrote in message
om...
I've added sugar to bring SG to a more desirable level. Any
amelioration is fair but remember watch your chemistry and make
adjustments. If an already balanced kit is compromised you'll be
doing yourself no flavours, er I mean favours.



  #5 (permalink)  
Old 26-04-2004, 05:39 AM
LG
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Out of many batches, perhaps one or two red wines didn't get elderberries
added -- and usually quite a lot -- up to a cup. But I really like
elderberries, and what it does to the wine.

Elder flowers can enhance a white wine too -- but you have to be really
careful with elderflowers, because for some people it can be really
overpowering and too much. Other people, absolutely love the stuff. Buy
some elderflower concentrate at Ikea. If you love the stuff, you'll
probably enjoy it in a white wine. If you're not crazy about it, a little
bit of elderflower can provide a hint of a bit more of a boquet to the wine.

LG

"Alfonse" wrote:

Hello all,
I was wondering how many of you "modify" your kit wines. I want to
experiment with such things as adding elderberries, more sugar, more
concentrate (from another similar kit), maybe some black peppercorns,
tannins, oaks etc, etc. Does anybody have a favorite recipe that they would
like to share?
My experimentation would be with red wines only.
Thanks,
Al


  #8 (permalink)  
Old 28-04-2004, 07:07 PM
pp
Usenet poster
 
Posts: n/a
Default Modifying kit wines

"Matthew Givens" wrote in message ink.net...
I don't know, I get a pretty good alcohol content from my kits. I just
finished fermenting two kit wines that started at 1.090 SG and ended at
0.90SG, for a computed alcohol content of 14%. That's not bad.



That doesn't look right. What formula are you using?

Pp
Vancouver, BC, Canada
  #9 (permalink)  
Old 28-04-2004, 10:48 PM
Ray
Usenet poster
 
Posts: n/a
Default Modifying kit wines

I assume you mean SG final = 0.990 not .90. In that case I get 13.4%
alcohol. Assuming numbers a bit more conservative and closer to what I
generally get with kits: SG beginning = 1.088, SG ending = 0.996, I still
get 12.4% and your point is still true. That is a fine level as for as I am
concerned.

Ray

"Matthew Givens" wrote in message
nk.net...
I don't know, I get a pretty good alcohol content from my kits. I just
finished fermenting two kit wines that started at 1.090 SG and ended at
0.90SG, for a computed alcohol content of 14%. That's not bad.



  #10 (permalink)  
Old 29-04-2004, 03:03 AM
Matthew Givens
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Typo in the original post, the ending SG was 0.990.

The April-May edition of Wine Maker had an article on calculating alcohol
content from SG readings. I translated the article to an algorithm and
wrote a little program to do the calculation for me based on starting and
current SG. The code looks like this:

WDouble SGCalc(WDouble startingSG, WDouble endingSG)
{
WDouble startGravity= 1000 * (startingSG - 1.0);
WDouble finalGravity= 1000 * (endingSG - 1.0);
WDouble correctedStartGravity= startGravity - 7;
WDouble PA= (startGravity - finalGravity) / (7.75 - 3 *
correctedStartGravity / 800);

return ( PA );
}

Running this manually using the starting and ending SGs provided earlier, I
get PA of 13.44%. I'll go back into the code to see why it's storing 14%.



"pp" wrote in message
om...
"Matthew Givens" wrote in message

ink.net...
I don't know, I get a pretty good alcohol content from my kits. I just
finished fermenting two kit wines that started at 1.090 SG and ended at
0.90SG, for a computed alcohol content of 14%. That's not bad.



That doesn't look right. What formula are you using?

Pp
Vancouver, BC, Canada



  #11 (permalink)  
Old 29-04-2004, 03:04 AM
Matthew Givens
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Yeah, I ran the calc manually and it agrees with you: 13.44%. I'll have to
look and see why my program is returning more than 14%.


"Ray" wrote in message
. com...
I assume you mean SG final = 0.990 not .90. In that case I get 13.4%
alcohol. Assuming numbers a bit more conservative and closer to what I
generally get with kits: SG beginning = 1.088, SG ending = 0.996, I

still
get 12.4% and your point is still true. That is a fine level as for as I

am
concerned.

Ray

"Matthew Givens" wrote in message
nk.net...
I don't know, I get a pretty good alcohol content from my kits. I just
finished fermenting two kit wines that started at 1.090 SG and ended at
0.90SG, for a computed alcohol content of 14%. That's not bad.





  #12 (permalink)  
Old 29-04-2004, 08:06 PM
pp
Usenet poster
 
Posts: n/a
Default Modifying kit wines

"Matthew Givens" wrote in message hlink.net...
Yeah, I ran the calc manually and it agrees with you: 13.44%. I'll have to
look and see why my program is returning more than 14%.


Most likely it's rounding up to integer or doing an integer division
somewhere instead of a real division.

Pp
  #13 (permalink)  
Old 30-04-2004, 12:36 PM
frederick ploegman
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Hi Ray

Here we go again. You can_not_get more alcohol in the wine than
your original PA predicts. Period !! A pre-pitch SG of 1.090
will yield 12% alcohol. No more !! A pre-pitch SG of 1.088
will yield ~11.72% alcohol. No more !! If this were not true,
our pre-pitch PA calculations would have no meaning !!

The use of the PA formula to calculate post-pitch alcohol levels
simply does_not_work !! (unless you have a way to offset the
change in reference point caused by the presence of alcohol)

I don't get this magazine. Can someone please post a link where
I can read this article ?? HTH

Regards,
Frederick


"Ray" wrote in message
. com...
I assume you mean SG final = 0.990 not .90. In that case I get 13.4%
alcohol. Assuming numbers a bit more conservative and closer to what I
generally get with kits: SG beginning = 1.088, SG ending = 0.996, I

still
get 12.4% and your point is still true. That is a fine level as for as I

am
concerned.

Ray

"Matthew Givens" wrote in message
nk.net...
I don't know, I get a pretty good alcohol content from my kits. I just
finished fermenting two kit wines that started at 1.090 SG and ended at
0.90SG, for a computed alcohol content of 14%. That's not bad.





  #14 (permalink)  
Old 30-04-2004, 08:39 PM
Ray
Usenet poster
 
Posts: n/a
Default Modifying kit wines

Fred, I would agree if the tables were correct, but most tables are based
incorrectly. If you use the table provided by Duncan and Acton in their
book "Progressive Winemaking" you are pretty much correct. Their number is
an maximum that can be obtained. Unfortunately most tables give PA as the
alcohol that will be generated if the SG drops to zero. As you know, SG
does not drop to zero and stop. The alcohol you end up with will generally
be higher than that predicted by most tables.

Ray

"frederick ploegman" wrote in message
...
Hi Ray

Here we go again. You can_not_get more alcohol in the wine than
your original PA predicts. Period !! A pre-pitch SG of 1.090
will yield 12% alcohol. No more !! A pre-pitch SG of 1.088
will yield ~11.72% alcohol. No more !! If this were not true,
our pre-pitch PA calculations would have no meaning !!

The use of the PA formula to calculate post-pitch alcohol levels
simply does_not_work !! (unless you have a way to offset the
change in reference point caused by the presence of alcohol)

I don't get this magazine. Can someone please post a link where
I can read this article ?? HTH

Regards,
Frederick


"Ray" wrote in message
. com...
I assume you mean SG final = 0.990 not .90. In that case I get 13.4%
alcohol. Assuming numbers a bit more conservative and closer to what I
generally get with kits: SG beginning = 1.088, SG ending = 0.996, I

still
get 12.4% and your point is still true. That is a fine level as for as

I
am
concerned.

Ray

"Matthew Givens" wrote in message
nk.net...
I don't know, I get a pretty good alcohol content from my kits. I

just
finished fermenting two kit wines that started at 1.090 SG and ended

at
0.90SG, for a computed alcohol content of 14%. That's not bad.







  #15 (permalink)  
Old 30-04-2004, 09:57 PM
pp
Usenet poster
 
Posts: n/a
Default Modifying kit wines

"frederick ploegman" wrote in message ...
Hi Ray

Here we go again. You can_not_get more alcohol in the wine than
your original PA predicts. Period !! A pre-pitch SG of 1.090
will yield 12% alcohol. No more !! A pre-pitch SG of 1.088
will yield ~11.72% alcohol. No more !! If this were not true,
our pre-pitch PA calculations would have no meaning !!

The use of the PA formula to calculate post-pitch alcohol levels
simply does_not_work !! (unless you have a way to offset the
change in reference point caused by the presence of alcohol)

I don't get this magazine. Can someone please post a link where
I can read this article ?? HTH

Regards,
Frederick


Frederick:

doesn't look like it's online: It's The Unified Theory of Gravity, but
there is no link:
http://www.winemakermag.com/feature/archive.html

If I remember correctly, the author was comparing 2 different formulas
that started with big difference in values, but when one of these was
adjusted to include the ending gravity, the difference evened out.

I think the formula in Margalit's book is also closer if one included
the ending gravity to add to the original PA value. And my hydrometer
has a scale for PA under 1.000 sg, so that again suggests it makes
sense to consider the ending value. So if that's a mistake, it's
understandable why people (repeatedly) make it.

Pp
 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Descriptions of Grapes (long) winemonger Wine 10 17-06-2004 08:13 PM
A Tasting of Maryland wines. Ian Hoare Wine 13 01-06-2004 05:23 AM
Another article about acidity jcoulter Wine 16 10-04-2004 05:53 PM
Everyday Wines, Everyday food Rich R Wine 4 03-03-2004 03:33 AM
Vermont state wines Eric Reichenbach Wine 0 15-01-2004 07:43 AM

fitness forum |
All times are GMT +1. The time now is 06:23 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 3.0.0 RC6
Copyright ©2004-2008 FoodBanter.com, part of the NewsgroupBanter project.
The comments are property of their posters.
Hummer Dealer - Debt Help - Classifieds - Money - EarthforEnergy