| 248 | } |
| 249 | |
| 250 | bool ZoneMixing_Impl::setDesignFlowRate(double designFlowRate) { |
| 251 | bool result(false); |
| 252 | result = setDouble(OS_ZoneMixingFields::DesignFlowRate, designFlowRate); |
| 253 | if (result) { |
| 254 | result = setString(OS_ZoneMixingFields::DesignFlowRateCalculationMethod, "Flow/Zone"); |
| 255 | OS_ASSERT(result); |
| 256 | //result = setString(OS_ZoneMixingFields::DesignFlowRate, ""); |
| 257 | //OS_ASSERT(result); |
| 258 | result = setString(OS_ZoneMixingFields::FlowRateperFloorArea, ""); |
| 259 | OS_ASSERT(result); |
| 260 | result = setString(OS_ZoneMixingFields::FlowRateperPerson, ""); |
| 261 | OS_ASSERT(result); |
| 262 | result = setString(OS_ZoneMixingFields::AirChangesperHour, ""); |
| 263 | OS_ASSERT(result); |
| 264 | } |
| 265 | return result; |
| 266 | } |
| 267 | |
| 268 | bool ZoneMixing_Impl::setFlowRateperFloorArea(double flowRateperFloorArea) { |
| 269 | bool result(false); |
no outgoing calls