You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When changing the emision system (NewRadiator, OldRadiator...), there are no effect on the result, when running the annualsimulation.
I tried looking at the source code, but with no succes..
hope somone can help
The text was updated successfully, but these errors were encountered:
Hi @bocaj1988 thanks for your comment. The difference between the New and the Old radiators is the supply temperature. There is no difference in energy consumption. If however your supply system is sensitive to supply temperatures. Such as a heat pump. Then you should have an effect on the result. However if your supply system does not have this sensitivity. For example, if it is a boiler, or plain electric heater, then there will be no difference in the result.
classOldRadiators(EmissionSystemBase):
""" Old building with radiators and high supply temperature Heat is emitted to the air node """defheat_flows(self):
flows=Flows()
flows.phi_ia_plus=self.energy_demandflows.phi_st_plus=0flows.phi_m_plus=0flows.heating_supply_temperature=65flows.heating_return_temperature=45flows.cooling_supply_temperature=12flows.cooling_return_temperature=21returnflowsclassNewRadiators(EmissionSystemBase):
""" Newer building with radiators and medium supply temperature Heat is emitted to the air node """defheat_flows(self):
flows=Flows()
flows.phi_ia_plus=self.energy_demandflows.phi_st_plus=0flows.phi_m_plus=0flows.heating_supply_temperature=50flows.heating_return_temperature=35flows.cooling_supply_temperature=12flows.cooling_return_temperature=21returnflows
If however you are using a system such as a heat pump, and there are no changes, then there may be a bug in the code. In this case, can you please send me your source code. Ideally, make a fork, upload your code, and send me that link so I can check it out.
Hey
When changing the emision system (NewRadiator, OldRadiator...), there are no effect on the result, when running the annualsimulation.
I tried looking at the source code, but with no succes..
hope somone can help
The text was updated successfully, but these errors were encountered: