3

Replacing wall construction with another construction

Hello! I am trying to make an energy model for retrofit of existing building. I have applied several measures for building design, but now I am thinking about replacing the wall construction of the first story. I was wondering if there is some measure similar to "Replacing Exterior Window Construction with the Different Construction from the Model". Do you have some suggestions how to do that using measures? I am not experienced in writing measures so any help and suggestion is more than welcome.

Thank you

Dubravka's avatar
121
Dubravka
asked 2015-10-27 08:45:55 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2015-10-27 09:02:55 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

1

There is a measure to set the exterior wall R value to a specified value.

You can also just create a construction set and assign the construction you want for the exterior wall. Then assign this to the building story object you want it used on. It will override the building default exterior wall construction.

Here is a video that demonstrates this and downloading constructions form BCL. The second half shows how to add the new construction set and assign it to a story. Below are screenshots of this with the the new grid view facility tab.

image description
Adding construction to new default construction set in "Construction Tab"

image description
Assigning new construction set to the first story in the "Stories" sub tab of the "Facility" tab in OpenStudio 1.9.0.

David Goldwasser's avatar
20.4k
David Goldwasser
answered 2015-10-27 09:44:16 -0500, updated 2015-10-27 09:57:45 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you for your comment. I have already used measure to set the exterior wall R value to a specified value, but that measure only adds new layer of insulation and I wanted to see the results for major retrofit when I completely change the construction of the walls.

Dubravka's avatar Dubravka (2015-10-28 02:31:34 -0500) edit
add a comment see more comments
1

The BCL measure Set Interior Walls to Selected Construction has almost everything you need to do what you describe. You'd just have to change the section in run that loops through surfaces and checks if they are interior walls (i.e. if surface.surfaceType == "Wall" and surface.outsideBoundaryCondition == "Surface") to instead check if the surface is on the first story and is an external wall. If the surface passes those checks, surface.setConstruction(construction) will set the construction to the one chosen as a user argument.

ericringold's avatar
10.6k
ericringold
answered 2015-10-27 09:38:11 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you for your answer. This is what I was looking for and thank you very much for detailed description for script change.

Dubravka's avatar Dubravka (2015-10-28 02:38:17 -0500) edit
add a comment see more comments