Skip to content

Commit

Permalink
fix(xml_schemas): Fix WUFI Heat Pump HW thermal losses
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-p-may committed Nov 13, 2022
1 parent 8da30ec commit 1d7f2f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PHX/to_WUFI_XML/xml_schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ def _DeviceWaterStoragePhParams(_t: hvac.PhxHotWaterTank) -> List[xml_writable]:
return [
XML_Node("SolarThermalStorageCapacity", _t.params.storage_capacity),
XML_Node("StorageLossesStandby", _t.params.standby_losses),
XML_Node("TotalSolarThermalStorageLosses", _t.params.solar_losses),
XML_Node("TotalSolarThermalStorageLosses", _t.params.standby_losses),
XML_Node("InputOption", _t.params.input_option.value),
XML_Node("AverageHeatReleaseStorage", _t.params.storage_loss_rate),
XML_Node("TankRoomTemp ", _t.params.room_temp),
Expand Down

0 comments on commit 1d7f2f6

Please sign in to comment.