3

Thermal Mass Output from OpenStudio or E+

I'm doing some parameter variation in OpenStudio using measures, one of them being a measure that can multiply the thermal mass of the exterior wall by a user defined number and that's all good, but I would like to know the resulting value of the thermal mass and for that I need an output of some sort or a file I can open to at least know what the baseline thermal mass is?

Is this something that is possible?

Kingo's avatar
351
Kingo
asked 2017-01-09 01:55:41 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2017-08-05 07:36:18 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

I didn't see anything in the Envelope Summary Tabular output in EnergyPlus. Here is a way to do it from model inputs in OpenStudio. The code below loops through layered constructions and then the material layers for each construction and reports the mass per m^2 for the construction. You could use this to get mass for specific surfaces or for all surfaces using a specific construction.

  model.getLayeredConstructions.each do |layered_construction|
  mass_per_area = 0.0
  layered_construction.layers.each do |layer|
    if layer.to_StandardOpaqueMaterial.is_initialized
      layer = layer.to_StandardOpaqueMaterial.get
      density = layer.density
      thickness = layer.thickness
      puts "#{layer.name} is opaque and has density of #{density} (kg/m^3) and a thickness of #{thickness} (m)"
      mass_per_area += density * thickness
    end
  end
  puts "Mass of #{layered_construction.name} is #{mass_per_area} (kg/m^2)"
end

Output looks like this.

Roof Membrane - Highly Reflective is opaque and has density of 1121.29 (kg/m^3) and a thickness of 0.0095 (m)

Metal Roof Surface is opaque and has density of 7823.99999999999 (kg/m^3) and a thickness of 0.000799999999999998 (m)

Mass of Typical IEAD Roof - Highly Reflective R-20.83 is 16.911454999999975 (kg/m^2)
David Goldwasser's avatar
20.4k
David Goldwasser
answered 2017-01-11 09:41:23 -0500
Julien Marrec's avatar
29.7k
Julien Marrec
updated 2017-01-19 09:20:46 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments