I've got two 330 gallon tanks, horizontal, one on top of the other. My 2 temp sensors are in the middle of the tank ends, surface mounted. Tanks are 30" diameter, with blocking between them, so say the sensors are 3' apart. Yesterday morning when I got up, the temps were 135/175. So 40 degrees difference in 3 feet. Quite satisfactory stratification.
Great to hear they should stratify well since I two was worried about stratification, limited by space and positioning options I really had no other choice though. My tanks will only be connected by that 2" pipe as shown in drawing and videos/pics. Maple1, do you happen to have any pics of your storage and how it is connected? Would be great to see.
Thank you all for all the great tips/info. I plan to really look into the idea of using the top cavity of my top storage tank as the necessary 'cushion'. I'll need to do some measurements and calculations to make sure I have the volume above the port.
DaveBP, I actually considered installing the Garn Jr. a while back but with my needs it didn't seem as good of a fit (having to heat storage first then demand.) The concept of using the chemicals (which is necessary for un-pressurized systems) had been a thought of mine but when mentioned to my brother and HVAC instructor, they both didn't seem to have much experience with that. My brother has experience with glycol systems but that might end up costing as much as a bladder tank when talking about 1000 gallon plus system.
Bob Rohr, a sight glass indeed (actually clear pex for me [home made]) would be for sure happening if I were to do it that way. And filling/charging once and a while is no problem for me.
Still, the big question I have is...with 100 gal or so of 'air', being sometimes dissolved and then going through new boiler, steel tanks, and expensive existing cast iron Buderus boiler, is that air going to cause issues (corrosion, sludge, dirty water, air pockets, etc.) over time? I know the little bit of air that gets through the wrong type (non oxygen barrier) of Pex can cause issues ...what will 100 gal space of it do? Some theories say that once the steel get's their 'glaze' of rust and no other air is added, there shouldn't be any issues (not enough O2 to cause issues)...others say no good - that's why compression tanks are not used anymore. Chemicals may be good, but do they expire or become less effective over time; and where does the cost of bladder expansion tank come close to that of chemicals?
Sorry for all the questions, I can go on and on with the questions...this is great forum and I already greatly appreciate the help already. Wife is kicking me off computer but I'll be back soon. Thanks again.
Should be something in my install thread linked in my sig - forget now what all I put there, been a while since I've been back to it.
I've got two stacked 500 gallon tanks similar to what you're installing, Sid. My tanks stratify quite nicely. Generally I'll see 40 degrees difference between top and bottom (top of top tank, bottom of bottom tank). I have dip tubes in my tanks installed to within 6" or so of the bottom.
So it seems like these tanks are going to stratify just fine according to what you and others are posting for temps.
Another big question I've been having in regards to stratification is how to return the water from load. Nofossil shows in his diagram (which I have been pretty much been planing to use) that he is returning water from load only to the bottom of bottom tank. If my return water is let's say 20 degrees less than supply, wouldn't that only let me get about 20 degrees stratification (when returning to bottom of bottom tank)? I've read post about properly 'loading' and returning to the storage and remember something about using diverter valves (i think) to match return temps to that of which is currently in the tanks. The European storage tanks engineered for thermal storage have many ports all the way down the tank, possibly for this reason?
Basically, I feel like with radiators (and possibly not enough of them) the return temps will be too high to send right to bottom of bottom tank, and when I do I will be selling myself short on overall storage capacity due to mixing.
Any thoughts?
Ever since I started studying the topic I've accepted the idea that [pressurized] storage tank stratification is quite important and that avoiding storage tank mixing is an important design goal.Basically, I feel like with radiators (and possibly not enough of them) the return temps will be too high to send right to bottom of bottom tank, and when I do I will be selling myself short on overall storage capacity due to mixing.
Any thoughts?
175 starting_temperature
300 gallon storage_per_zone
10000 btu/hour zone_load
15 feet zone_length
3 zone_gpm
t_begin=175.00 t_end=164.70 t_drop=10.30 btu=15448 duty=0.647 lap_minutes=154 t=154
t_begin=164.70 t_end=155.67 t_drop= 9.03 btu=13552 duty=0.738 lap_minutes=136 t=290
t_begin=155.67 t_end=147.74 t_drop= 7.93 btu=11889 duty=0.841 lap_minutes=119 t=409
t_begin=147.74 t_end=140.79 t_drop= 6.95 btu=10430 duty=0.959 lap_minutes=104 t=513
85533
t_begin=145.41 t_end=138.74 t_drop= 6.67 btu=10001 duty=1.000 t=544
90647
use strict;
my $gallon_tank = 300.0;
my $t_0 = 175.0;
my $gpm_pump = 3.0;
my $load = 10000;
my $l = 15.0;
my $t_end = $t_0;
my $t_begin = 0.0;
my $t_begin_was = 0.0;
my $t_drop = 0.0;
my $btu = 0.0;
my $btu_tank = 0.0;
my $duty;
my $gpm;
my $lap_minutes;
my $t = 0;
sub btu_per_foot {
my $degF = shift;
return(2.0 * (($degF * 6.5) - 592));
}
sub t_drop_btu {
my $inc = 0.1;
$t_drop = 0;
$btu = 0;
for (my $foot = 0; $foot < $l; $foot += $inc) {
my $btu_per_foot = btu_per_foot($t_begin - $t_drop);
my $t_drop_delta = ($inc * $btu_per_foot) / ($gpm_pump * 500);
$t_drop += $t_drop_delta;
$btu += $btu_per_foot * $inc;
}
$duty = $load / $btu;
$gpm = $gpm_pump * $duty;
$lap_minutes = $gallon_tank / $gpm;
$t += $lap_minutes;
}
sub p {
printf("t_begin=%5.2f t_end=%5.2f t_drop=%5.2f btu=%5.0f duty=%5.3f lap_minutes=%3.0f t=%3.0f\n"
,$t_begin
,$t_end
,$t_drop
,$btu
,$duty
,$lap_minutes
,$t
);
}
sub main {
$t = 0;
printf("\n");
printf(
"%5.0f starting_temperature\n" .
"%5.0f gallon storage_per_zone\n" .
"%5.0f btu/hour zone_load\n" .
"%5.0f feet zone_length\n" .
"%5.0f zone_gpm\n"
,$t_0
,$gallon_tank
,$load
,$l
,$gpm_pump
);
printf("\n");
for (my $lap = 0; $lap < 10; $lap++) {
$t_begin = $t_end;
t_drop_btu();
($duty > 1.0) && (last);
$t_end -= $t_drop;
$t_begin_was = $t_begin;
p();
}
$btu_tank = $gallon_tank * 8.333333 * ($t_0 - $t_end);
printf("%.0f\n", $btu_tank);
printf("\n");
$t_begin = $t_begin_was;
for (my $i = 0; $i < 10000; $i++) {
t_drop_btu();
($duty > 0.9999) && (last);
$t_begin -= 0.001;
}
$t_end = $t_begin - $t_drop;
my $supply_duty = ($t_begin - $t_end) / ($t_0 - $t_end);
$btu_tank = $gallon_tank * 8.333333 * ($t_0 - $t_end);
$t = 60 * $btu_tank / $btu;
p();
printf("%.0f\n", $btu_tank);
}
main();
Then again, if we have one or two loads that need higher supply temperatures (for instance DHW...
I'm thinking that if you have two or more loads and some load(s) can work with lower temperatures than the other(s) then we could make a case for minimizing the return temperature of the lower temperature load(s) in order to extend the time that unmixed hot water remains available at the top of storage for the benefit of those loads that require higher supply temperatures.I am planning to use the wood boiler for DHW in the summer time and hope to prolong in-between burn times. Do you think it is then worth it?
I'm thinking that if you have two or more loads and some load(s) can work with lower temperatures than the other(s) then we could make a case for minimizing the return temperature of the lower temperature load(s) in order to extend the time that unmixed hot water remains available at the top of storage for the benefit of those loads that require higher supply temperatures.
For summertime DHW there wouldn't be any other loads to cause mixing problems.
I am planning to use the wood boiler for DHW in the summer time and hope to prolong in-between burn times. Do you think it is then worth it?
I think a lot of us have backed away from using the wood boiler for summer DHW. In recent years I've been cutting up a pile of dead wood from around the dooryard and keeping it out of the rain until laundry day and then disposing it with the boiler between stints with the lawnmower.Not sure what you have lined up for heating your DHW exactly - but a sidearm doesn't work very good at all in the summer. It will mess up your stratification and your storage will be pretty well useless once it gets below 150 or so. I started out with one, but then added a 20 plate FPHX pumped slowly both sides. Which works very well, I burn every 7 days or so in the summer for DHW. Having said that, I may or may not do it again next summer. Depends what I have for junk wood laying around - it only costs us $25-30/mo for electric DHW.
Sure thing Bad Wolf, message me sometime and I'd love to have you see what I have so far and plans. Any advise from someone with experience is greatly appreciated.Welcome aboard Sid. Just saw your thread here. Looks like you are off to a good start, asking all the right questions (and people). I'm in Colchester too, I went with a 100 gallon non pressurized system so I would be interested in seeing yours sometime.
Since we have just moved into this house, I'm not sure how much that oil boiler will need to run for DHW in summer and cost. It's just my wife and I and a new born on the way. Throwing scrap wood in there once and while and starting a fire sounds like not too much of an issue, especially in shoulder season. I'm sure a few super hot months during summer I may not feel like starting a fire, but that's why I hope the way I plan to pipe and control (acording to Nofossil's pinned thread [https://www.hearth.com/talk/threads/simplest-pressurized-storage-system-design.16567/] ) will allow for the oil boiler to come on for DHW in summer, and not have to heat all of storage every time.I think a lot of us have backed away from using the wood boiler for summer DHW. In recent years I've been cutting up a pile of dead wood from around the dooryard and keeping it out of the rain until laundry day and then disposing it with the boiler between stints with the lawnmower.
We use essential cookies to make this site work, and optional cookies to enhance your experience.