Controller outdoorAir object Humidistat Control Zone Name

asked 2024-06-28 07:03:47 -0500

looooic's avatar

updated 2024-07-01 12:22:57 -0500

Dear Community,

I am using de openstudio package in python. I want to modify the object Controller:OutdoorAir object.

I want to put 'True' or 'Yes' for de field : 'High Humidity Control' and put the name of the zone for the field 'Humidistat Control Zone Name'.

To do this I do the following instructions :

controller_outdoorair = [CA for CA in openstudio.model.getControllerOutdoorAirs(osm)]

for index in range(len(controller_outdoorair)): controller_outdoorair[index].setHighHumidityControl(True)

It works for the field 'High Humidity Control' but It seems that there is no function for the field 'Humidistat Control Zone Name'. The instruction controller_outdoorair[index].setHumidistatControlZoneName("Zone name") does not work.

I read the documentation here : https://openstudio-sdk-documentation....

It sounds that the function to define the zone name does not exist.

Is it normal ?

edit retag flag offensive close merge delete

Comments

I agree with you that it looks to not be supported by OpenStudio right now. I also see that you created a GitHub issue on this, so adding the link here.

shorowit's avatar shorowit  ( 2024-07-02 09:33:58 -0500 )edit