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
3

OpenStudio measure writing, do generic methods exist for all AirTerminal ObjectTypes?

asked 3 years ago

pow_skier's avatar

updated 3 years ago

Does the SDK have a generic class with methods that work on all AirTerminal ObjectTypes?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
3

answered 3 years ago

updated 3 years ago

ThermalZone::airLoopHVACTerminal returns an HVACComponent class, which is the 'generic' class that all AirTerminal object types inherit from (AirTerminalDualDuct types inherit from Mixer, not StraightComponent). Once you get the HVACObject, you need to 'cast' it to the proper base type in order to access the specific terminal class methods. e.g.:

terminal = thermal_zone.airLoopHVACTerminal
if terminal.is_initialized
  terminal = terminal.get # this gets the HVACComponent
end
# cast to AirTerminalSingleDuctVAVReheat class
if terminal.to_AirTerminalSingleDuctVAVReheat.is_initialized
  terminal = terminal.to_AirTerminalSingleDuctVAVReheat.get 
end
terminal.setMaximumAirFlowRate(rate)
Preview: (hide)
link

Comments

Good Morning Eric and Luis thank you for the responses. This solved my blockage and I added in some if tests to address the ambiguity of what kind of terminal might get pulled depending on what the seed model has and it is working. Regards and a hearty thank you.

pow_skier's avatar pow_skier  ( 3 years ago )
2

To avoid the casting, try Julian's to_actual_objectmethod. https://unmethours.com/question/17616...

MatthewSteen's avatar MatthewSteen  ( 3 years ago )
0

answered 3 years ago

pow_skier's avatar

It seems like maybe the StraightComponentStraightComponent is the answer to my question.

But the use case I am struggling with is after doing terminal = thermal_zone.airLoopHVACTerminal.get including doing .empty? check before hand, when using an object method like .setMaximumAirFlowRate it returns a hash error on the Terminal object. It seems like the ambiguity on what kind of Terminal might be the issue but any pointers would be very much appreciated. Thank you.

Preview: (hide)
link

Comments

Eric's answer is what you need to do.

Luis Lara's avatar Luis Lara  ( 3 years 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: 3 years ago

Seen: 199 times

Last updated: Dec 15 '21