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

Finding R-values of constructions in OpenStudio

asked 2021-08-10 18:57:00 -0500

bchoi's avatar

Hello. I would like to find the R-values of constructions such as wall, floor, roof, and attic. Each of these constructions is composed of several layers of materials. Is there a way to output their R-values? Perhaps there is an existing OS measure? Or is there a way to calculate based on the material thermal properties? Thank you!

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
3

answered 2021-08-11 11:07:26 -0500

updated 2021-08-11 11:20:20 -0500

As an alternative to @Denis Bourgeois's answer if you want to get this without running the simulation OpenStudio has a method layered_construction. thermalConductance that will return this thermal conductance. It is used in some of our measures to report on the initial and then modified R values.

Here is a use of it in the extension gem that ships with OpenStudio. This implementation adds film coefficient

std = Standard.build(target_standard)
film_coefficients_r_value = std.film_coefficients_r_value(intended_surface_type, includes_int_film = true, includes_ext_film = true)
thermal_conductance = surface_detail[:construction].thermalConductance.get
r_value_with_film = 1 / thermal_conductance + film_coefficients_r_value
source_units = 'm^2*K/W'
target_units = 'ft^2*h*R/Btu'
r_value_ip = OpenStudio.convert(r_value_with_film, source_units, target_units).get
edit flag offensive delete link more
2

answered 2021-08-11 03:37:08 -0500

updated 2021-08-11 03:38:15 -0500

If you successfully ran an EnergyPlus simulation, you can retrieve construction U-factors from the /reports/eplustbl.html Envelope Summary Tables (here, an excerpt from the US DOE Commercial Prototype Warehouse):

image description

You can alternatively just add up the layer R-values (material thickness / material conductivity).

edit flag offensive delete link more

Your Answer

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

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2021-08-10 18:57:00 -0500

Seen: 325 times

Last updated: Aug 11 '21