| 1 | initial version |
I think this explanation applies in your case. I suggest starting with something simpler, then build from there. For instance, first try a simpler (constant) ScheduleRuleset setting like this (WITHOUT explicitly setting the ScheduleTypeLimits), e.g.:
sch = openstudio.model.ScheduleRuleset(model_os)
sch.setName("Clg Pnl")
sch.defaultDaySchedule().addValue(openstudio.Time(0, 24, 0, 0), 12.8)
clg_pnl_coil.setCoolingControlTemperatureSchedule(sch)
I tested something similar on the Ruby side (IRB) - no issues.
| 2 | No.2 Revision |
I think this explanation applies in your case. I suggest starting with something simpler, then build from there. For instance, first try a simpler (constant) ScheduleRuleset setting like this (WITHOUT explicitly setting the ScheduleTypeLimits), e.g.:
sch = openstudio.model.ScheduleRuleset(model_os)
sch.setName("Clg Pnl")
Pnl Cool CTL temp SCH")
sch.defaultDaySchedule().addValue(openstudio.Time(0, 24, 0, 0), 12.8)
clg_pnl_coil.setCoolingControlTemperatureSchedule(sch)
I tested something similar on the Ruby side (IRB) - no issues.