Humidistat Control Zone Name [closed]

asked 2024-06-28 07:04:50 -0500

looooic's avatar

updated 2024-07-01 12:23:12 -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 reopen merge delete

Closed for the following reason duplicate question by shorowit
close date 2024-06-28 14:17:54.175093

Comments

shorowit's avatar shorowit  ( 2024-06-28 14:17:50 -0500 )edit