Trying to get some feedback from anyone using one of these pumps . I know B&G has one and Taco has one also. The Taco 00 "VS" will operate in a Setpoint or Δ T mode .
thx, Pat
thx, Pat
sgschwend said:If you look at the data logger thread you will see some boiler temperature data on page 3, which might be helpful.
Most boilers have a lot of thermal mass stored either in the refractory or the boiler water jacket or both. That mass makes it difficult to hold a boiler water temperature constant. I wouldn't expect a very tight temperature control. With a constant velocity pump on my boiler I can control the temperature to within +-5F.
Other variables would be how hot the fire is or heat input, number of gallons of water in the boiler, heat transfer rate of the heat exchanger.
As to your other question about controlling the water temperature to your future storage:
The storage will charge with a wide range of hot water input temperatures, which can be controlled with the mixing valve setting and the size of the circulator pump.
For example: If you start with 145F water leaving the boiler and going into the storage. The storage temperature will eventually increase to the boiler's set point (perhaps 180F). It will likely take three cycles of the storage water through the boiler. This is said to be the most efficient method since the colder the water entering the boiler the better the heat transfer.
If the mixing valve is adjusted so the boiler has a higher temperature water output there will be less cycles of water needed (the flow to the storage will be reduced by the mixing valve).
In either of these cases the boiler has a heat output that is being transferred to loads, in the case of storage it is insensitive to the heat input temperature, eventually the system will reach the set point temperature.
sgschwend said:Sure it is possible, and to some degree that is how they all work.
When you look at the data logger thread you will see temperature graphs. The graph show that the storage will be at several temperatures at the same time, in a perfect system the storage would be at two temperatures. So it is helpful to think of storage that way. The top of the tank will be hot and the bottom will be cold. Your question refers to when the storage is down to 150F, is this the top, middle or bottom or anywhere in between?
I normally will recharge my storage at a convenient time for me. If I am busy one day I may choose to wait till the next day, as it become warmer I am sure the number of days between fires will increase. I like that. I do this by looking at my storage temperature to see how much hot water is left.
There are multiple methods to set the boiler temperature, lots of info here on that. Mixing valves are one way, they have performance limitations (some limitations are brand based). As the mixing system (be it a valve or other similar motor/valve group of parts) in adjusted up in temperature the boiler output temperature will also rise (for a given pump). The circulator pump can be (and should be) controlled to run only after the boiler has reached a set point temperature. If the temperature is not reached then the pump is switched off. In your example the set point would be set high, perhaps 185F, (this value is scary to me). If the boiler output water is below 185F there would be no flow to the storage. I use Dwyer's Instruments dual temperate switches to control the boiler high limit set point and the circulator pump run temperature.
I could look at your system documentation to see how you are setup. Do you have a system drawing or is there an online manual showing your boiler controls?
patch53 said:Eventually as your return water from storage gets closer to 190F the pump would be unable to keep the return water from getting above 190F , but then your aquastat would shut down your boiler at say 195F. The pump would continue to pump at high speed until any residual heat was removed from the boiler and then the pump would slow down, but still be sending 190F water to storage for some time probably.
Is something like this possible, or just wishful thinking?
I really don’t want to get into all the electronic gizmo’s and gadgets. Those are great if you know how to install and play with them, but I’d rather just keep it simple if at all possible. I’m just trying to figure out a way to get hot water into a storage tank as quickly and efficiently as possible using the least amount of electricity and wood, like everyone else I guess.
patch53 said:Thanks Eliot, do you have one of these pumps on your system currently?
Pat
patch53 said:Sounds interesting, even tho I have no clue what you're talking about . LOL
Well, I usually don't mind paying a bit more for something if it will save in the end, but I guess these Taco VS models sell for around $600 !! Ouch !
But I actually built my Seton rather than buying one and saved about $4K, so I guess that justifies spending a bit more for a fancy pump, right? LOL
Pat
sgschwend said:P. I suggest looking at page 3 of the thread so you could see some graphs of storage temperatures and also how fast a tank may charge. You can see how the top tank temp is a lot different than the bottom of the tank.
The storage plumbing needs to guard against turbulence, which I would assume would be more difficult with a larger circulation pump.
I have read in other threads posted here that internal boiler heat exchanger temperatures below 135F is to be avoided, low return water temperatures cause problems. Both creosote and metal eating acid can form otherwise. The design you are following accounts for this issue by using a mixing valve.
sgschwend said:...
When you add well insulated storage it will hold its temperature unless water is exchanged with a load. By running the boiler 24 hours a day all of the heat load will be supported by the boiler. It will be as if you do not have storage. I don't see that it will help you any. If you change the way you use your boiler you could benefit from storage.
I like storage, I also like starting a fire in a Seton design boiler, I often get to light one, my everyday boiler is a large Essex.
ewdudley said:sgschwend said:...
When you add well insulated storage it will hold its temperature unless water is exchanged with a load. By running the boiler 24 hours a day all of the heat load will be supported by the boiler. It will be as if you do not have storage. I don't see that it will help you any. If you change the way you use your boiler you could benefit from storage.
I like storage, I also like starting a fire in a Seton design boiler, I often get to light one, my everyday boiler is a large Essex.
If I understand Pat's goals correctly, he wants to use storage to eliminate short-cycling of the boiler by isolating the load from the boiler with some storage. The boiler would fire when storage gets less hot enough and would idle when storage gets more hot enough. Gasification boilers with storage normally run one burn with maybe some short cycling at the end, a Seton type boiler would allow multiple one hour or so burns, each yielding 150,000 btus or so, spaced in time by hours.
The trick will be to get the boiler to stay off until the top of storage is cool enough and then stay on until the bottom of storage is hot enough.
--ewd
patch53 said:Hi Steve, my design is going to have 2 seperate loops .
The boiler circulator would run all the time. Even if I go with a Taco ΔT pump, it will still circulate at a minimum speed at all times.
I don't have a clue what a "digital temperature switch" is, but I'll check it out.
Pat
t_storage_bottom_limit = 185F
t_storage_top_limit = 195F
t_storage_top_hysteresis = 50F
t_boiler_output_setpoint = 190F
t_storage_top_not_break_on_rise = (t_storage_top < t_storage_top_limit)
t_storage_bottom_not_break_on_rise = (t_storage_bottom < t_storage_bottom_limit)
t_storage_top_make_on_fall =
(t_storage_top < (t_storage_top_limit - t_storage_top_hysteresis))
boiler_run =
(
(boiler_run) &&
(t_storage_top_not_break_on_rise) &&
(t_storage_bottom_not_break_on_rise)
) ||
(
(boiler_idle) &&
(t_storage_top_make_on_fall)
)
boiler_to_storage_pump_run = (boiler_run) || (boiler_overtemp)
SPDT
relay storage_top_temp_switch storage_bottom_temp_switch
| | |
v v v
_________________________________________________________________________________
|
/ |
_________NEUTRAL |
| |
| |
v |
|
NO |
__boiler_run___storage_top_not_break_on_rise__storage_bottom_not_break_on_rise__|___
24VAC_ | |
__boiler_idle__storage_top_make_on_fall_________________________________________| |
NC |
|
|
______boiler_to_storage_pump_run__________ NC |
| ____________________|
| ___
| NO
|
| ___ NC
| _________________24VAC
|_______
NO
^
|
|_______NEUTRAL
|
|
/
_____boiler_overtemp
^
|
DPDT
relay
We use essential cookies to make this site work, and optional cookies to enhance your experience.