First time here? Check out the Help page!
| 1 | initial version |
Here are the links to the methods for the AirTerminalSingleDuctVAVNoReheat, which should be the same for the AirTerminalSingleDuctVAVHeatAndCoolNoReheat class.
In a measure it might look something like...
objects = model.getAirTerminalSingleDuctVAVNoReheats
objects.each do |obj|
obj.setZoneMinimumAirFlowInputMethod('FixedFlowRate')
obj.setControlForOutdoorAir(false)
end
| 2 | No.2 Revision |
Here are the links to the methods for the AirTerminalSingleDuctVAVNoReheat, which should be the same for the AirTerminalSingleDuctVAVHeatAndCoolNoReheat class.
In a measure it might would look something like...
objects = model.getAirTerminalSingleDuctVAVNoReheats
objects.each do |obj|
obj.setZoneMinimumAirFlowInputMethod('FixedFlowRate')
obj.setControlForOutdoorAir(false)
end