| 243 | } |
| 244 | |
| 245 | void ShadingControl_Impl::resetShadingControlType() { |
| 246 | std::string oldControlType = this->shadingControlType(); |
| 247 | bool test = setString(OS_ShadingControlFields::ShadingControlType, ""); |
| 248 | OS_ASSERT(test); |
| 249 | if (!openstudio::istringEqual("OnIfHighSolarOnWindow", oldControlType)) { |
| 250 | resetSetpoint(); |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | bool ShadingControl_Impl::setSchedule(const Schedule& schedule) { |
| 255 | bool result = false; |
nothing calls this directly
no test coverage detected