Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

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.


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.