Skip to content

Commit

Permalink
adjust PI control values to be more realistic
Browse files Browse the repository at this point in the history
  • Loading branch information
DaJansenGit committed Nov 27, 2024
1 parent 208ae12 commit 9c0e78b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,15 @@ 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 = 10000,
TNHeat = 1,
KRHeat = ${zone.model_attr.heat_load * 0.1},
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 = 10000,
TNCool = 1,
KRCool = ${zone.model_attr.cool_load * 0.1},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
TThresholdHeater = ${zone.use_conditions.T_threshold_heating},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ 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 = 10000,
TNHeat = 1,
KRHeat = ${zone.model_attr.heat_load * 0.1},
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 = 10000,
TNCool = 1,
KRCool = ${zone.model_attr.cool_load * 0.1},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
TThresholdHeater = ${zone.use_conditions.T_threshold_heating},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ 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 = 10000,
TNHeat = 1,
KRHeat = ${zone.model_attr.heat_load * 0.1},
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 = 10000,
TNCool = 1,
KRCool = ${zone.model_attr.cool_load * 0.1},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
TThresholdHeater = ${zone.use_conditions.T_threshold_heating},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ 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 = 100,
TNHeat = 50,
KRHeat = ${zone.model_attr.heat_load * 0.1},
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 = 10000,
TNCool = 1,
KRCool = ${zone.model_attr.cool_load * 0.1},
TNCool = 120,
CoolerOn = ${get_true_false(zone.use_conditions.with_cooling)},
withIdealThresholds = ${get_true_false(zone.use_conditions.with_ideal_thresholds)},
TThresholdHeater = ${zone.use_conditions.T_threshold_heating},
Expand Down

0 comments on commit 9c0e78b

Please sign in to comment.