Skip to content

Commit

Permalink
Change heater/cooler pi parameter input
Browse files Browse the repository at this point in the history
  • Loading branch information
HoeppJ committed Jan 20, 2025
1 parent 22d6050 commit 31206cd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ record ${zone.parent.name}_${zone.name} "${zone.parent.name}_${zone.name}"
maxAHU = ${zone.use_conditions.max_ahu},
hHeat = ${zone.model_attr.heat_load},
lHeat = 0,
KRHeat = ${zone.pid_gain_heat},
KRHeat = ${0.1*zone.model_attr.heat_load},
TNHeat = ${zone.pid_ti_heat},
HeaterOn = ${get_true_false(zone.use_conditions.with_heating)},
hCool = 0,
lCool = ${zone.model_attr.cool_load},
heaLoadFacOut = ${zone.model_attr.heat_load_outside_factor},
heaLoadFacGrd = ${zone.model_attr.heat_load_ground_factor},
KRCool = ${zone.pid_gain_cool},
KRCool = ${0.1*zone.model_attr.cool_load},
TNCool = ${zone.pid_ti_cool},
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ record ${zone.parent.name}_${zone.name} "${zone.parent.name}_${zone.name}"
maxAHU = ${zone.use_conditions.max_ahu},
hHeat = ${zone.model_attr.heat_load},
lHeat = 0,
KRHeat = ${zone.model_attr.heat_load * 0.1},
KRHeat = ${0.1*zone.model_attr.heat_load},
TNHeat = 120,
HeaterOn = ${get_true_false(zone.use_conditions.with_heating)},
hCool = 0,
heaLoadFacOut = ${zone.model_attr.heat_load_outside_factor},
heaLoadFacGrd = ${zone.model_attr.heat_load_ground_factor},
lCool = ${zone.model_attr.cool_load},
KRCool = ${zone.model_attr.cool_load * 0.1},
KRCool = ${0.1*zone.model_attr.cool_load},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ record ${zone.parent.name}_${zone.name} "${zone.parent.name}_${zone.name}"
maxAHU = ${zone.use_conditions.max_ahu},
hHeat = ${zone.model_attr.heat_load},
lHeat = 0,
KRHeat = ${zone.model_attr.heat_load * 0.1},
KRHeat = ${0.1*zone.model_attr.heat_load},
TNHeat = 120,
HeaterOn = ${get_true_false(zone.use_conditions.with_heating)},
hCool = 0,
lCool = ${zone.model_attr.cool_load},
heaLoadFacOut = ${zone.model_attr.heat_load_outside_factor},
heaLoadFacGrd = ${zone.model_attr.heat_load_ground_factor},
KRCool = ${zone.model_attr.cool_load * 0.1},
KRCool = ${0.1*zone.model_attr.cool_load},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ record ${zone.parent.name}_${zone.name} "${zone.parent.name}_${zone.name}"
maxAHU = ${zone.use_conditions.max_ahu},
hHeat = ${zone.model_attr.heat_load},
lHeat = 0,
KRHeat = ${zone.pid_gain_heat},
KRHeat = ${0.1*zone.model_attr.heat_load},
TNHeat = ${zone.pid_ti_heat},
HeaterOn = ${get_true_false(zone.use_conditions.with_heating)},
hCool = 0,
lCool = ${zone.model_attr.cool_load},
heaLoadFacOut = ${zone.model_attr.heat_load_outside_factor},
heaLoadFacGrd = ${zone.model_attr.heat_load_ground_factor},
KRCool = ${zone.pid_gain_cool},
KRCool = ${0.1*zone.model_attr.cool_load},
TNCool = ${zone.pid_ti_cool},
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
Expand Down

0 comments on commit 31206cd

Please sign in to comment.