![]() |
|
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. |
|
|||||||
| 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. |
|
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
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 |
|
|||
|
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 |
|
|||
|
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. |
|
|||
|
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. |
|
|||
|
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 |
|
|||
|
|
|
|||
|
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. "LG" wrote in message ... (glad heart) wrote: 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. Many kits I think can benefit with increased alcohol levels, but many of them take longer to mature into a nicer wine when this is done. I have the impression that if you don't add sugar, or if the alcohol content is lower, it seems to be drinkable sooner. However, with a bit more alcohol, you might get a better wine, later. I may speculate that some kits may intentionally lower in alcohol because the kit makers want to sell kits that can be rushed and drunk early. LG |
|
|||
|
"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 |
|
|||
|
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. |
|
|||
|
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 |
|
|||
|
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. |
|
|||
|
"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 |
|
|||
|
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. |
|
|||
|
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. |
|
|||
|
"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 |
| Display Modes | |
|
|
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 |