3

undo zone mixing in OS model

I updated my model for zone mixing by 1. assigning air wall between spaces. 2. Running this "zone mixing" measure which assigned certain CFM transfers between them.

My question is - how can I undo this zone mixing?

Harshul Singhal's avatar
565
Harshul Singhal
asked 2016-06-16 07:53:30 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2017-05-03 19:19:56 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Welcome to unmet hours. Couple of things:

  • Do not include greetings per our convention (Hi, thanks, etc) (here)
  • Make you tag your questions with the appropriate software you are using. Here it's definitely an openstudio question (as opposed to an energyplus one), so openstudio is in order

I made these changes already in your post.

Julien Marrec's avatar Julien Marrec (2016-06-16 09:04:23 -0500) edit
add a comment see more comments

1 Answer

3

Load your model using the ruby bindings in a terminal (see Optional - Install Ruby section in the introductory tutorial) or create a very simple measure in which you'll run this loop to remove all ZoneMixing objects

model.getZoneMixings.each do |mix|
  mix.remove
end
Julien Marrec's avatar
29.7k
Julien Marrec
answered 2016-06-16 08:56:46 -0500, updated 2016-06-16 09:48:52 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments