First time here? Check out the Help page!

Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
0

Open Studio Ruby code - getting the existing HVAC air loop template

asked 1 year ago

MDW's avatar

updated 1 year ago

Hello, I tried using AI as a starting point to code an ASHP measure on Ruby to be used on Open Studio. Two lines of code are:

thermal_zone = thermal_zone.get
existing_template = thermal_zone.airLoopHVACTemplate

The second line is throwing an error, as the method "airLoopHVACTemplate" is undefined. I've been unsuccessful in finding documentation explaining this method - does anyone know what alternatives could be used to achieve what I am hoping to accomplish (get the existing HVAC air loop for the thermal zone)?

Thank you!

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 1 year ago

Don't think the SDK has an airLoopHVACTemplate method. You're likely after airLoopHVAC, which the ThermalZone class inherits from HVACComponent. An example.

Preview: (hide)
link

Comments

Exactly. Mind that this returns an OptionalAirLoopHVAC, eg a_ = z.airLoopHVAC, so you should check if !a_.empty? or a_.is_initialized before calling a = a_.get when a is now an AirLoopHVAC

Julien Marrec's avatar Julien Marrec  ( 1 year ago )

Got it - thank you both for the responses.

MDW's avatar MDW  ( 1 year ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Training Workshops

Careers

Question Tools

1 follower

Stats

Asked: 1 year ago

Seen: 87 times

Last updated: May 31 '23