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

double skin facade

asked 2015-07-01 22:28:23 -0500

tjolutobi's avatar

updated 2017-05-22 15:33:25 -0500

I am working on a study that require evaluating the total heat transfer through a ventilated double skin envelope and with the little understand I have so far in OS, am yet to figure out how it can be done. Any help or suggestion will be highly appreciated.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
7

answered 2015-07-02 09:56:53 -0500

updated 2015-07-02 10:04:31 -0500

The way I've done this is to use an EnergyPlus measure to have the exterior walls reference an SurfaceProperty:ExteriorNaturallyVentedCavity object that the measure adds. The object models an opaque surface (if your double skin is glazed then it won't be appropriate), and also only effects opaque exterior surfaces (i.e. won't cover windows).

The measure creates a SurfaceProperty:OtherSideConditionsModel object:

sideConditionModel = "
SurfaceProperty:OtherSideConditionsModel,
     ScreenCavityModel,          ! OtherSideConditionsModel Name
     GapConvectionRadiation;     ! Type of Modeling used to determine Boundary Conditions
    "

object = OpenStudio::IdfObject::load(sideConditionModel).get
wsObject = workspace.addObject(object)

then loops through the model surfaces to find exterior walls (by construction or surface type or other criteria of your choice), and assigns the other side condition with

surface.setString(4,"OtherSideConditionsModel")
surface.setString(5,"ScreenCavityModel")

and finally adds the ExteriorNaturallyVentedCavity object:

naturallyVentedCavity = "
SurfaceProperty:ExteriorNaturalVentedCavity,
    Vented Cavity Exterior Surface,     ! Name
    ScreenCavityModel,          ! OtherSideConditionsModel Object Name
    0.02,                       ! Area Fraction of Openings
    0.9,                        ! Thermal Emissivity of Exterior Baffle Material
    0.92,                       ! Solar Absorbtivity of Exterior Baffle
    0.05,                       ! Height scale for bouyancy-driven ventilation
    0.05,                       ! Effective Thickness of Cavity Behind Exterior Baffle
    0.97,                       ! Ratio of Actual surface area to projected surface area
    Smooth ,                    ! Roughness of collector
    0.1 ,                       ! Cv, Effectiveness for perforations with respect to Wind
    0.5 ,                       ! Cd, Discharge Coefficient for Openings with respect to bouyancy-driven flow
    #{surface_names.join(",")} ;   ! Surface Name
    "

cavity = OpenStudio::IdfObject::load(naturallyVentedCavity).get
wsCavity = workspace.addObject(cavity)

To find the heat transfer through the object would likely take some creative post-processing, for which I will refer you to the object outputs.

edit flag offensive delete link more

Comments

thank you so much Eric for that insight. I'll try to study these. God bless!

tjolutobi's avatar tjolutobi  ( 2015-07-02 19:50:34 -0500 )edit

I took the liberty of marking this answer as accepted (answered a year and a half ago). @tjolutobi, remember to mark answers as accepted if they solved your problem in the future. Thanks!

Julien Marrec's avatar Julien Marrec  ( 2017-01-31 07:37:21 -0500 )edit

I am also looking to study the benefits of a double skin facade.By my understanding of the description above, it looks like this can be used only on exterior opaque surface (walls). How would this change and what could I do to study the impacts of the double skin if i were to have the double skin on a curtain wall ? Any help/guidance is appreciated .

Vinay Shekar's avatar Vinay Shekar  ( 2017-05-15 11:26:51 -0500 )edit

I think you should open a new question (reference this one).

Julien Marrec's avatar Julien Marrec  ( 2017-05-19 00:57:29 -0500 )edit

@Eric Ringold your answer from 6 years ago helped me a lot today:) I am modeling the 2nd skin for my single-family house using Energy plus. I have some questions regarding those variables in SurfaceProperty:ExteriorNaturalVentedCavity: - How did you define those variables like Thermal Emissivity, Solar Absorbtivity and etc.? - What is meant by collector here? - What does Surface 1 Name refer to?

parvanehniaei's avatar parvanehniaei  ( 2021-07-02 08:40:15 -0500 )edit

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

2 followers

Stats

Asked: 2015-07-01 22:28:23 -0500

Seen: 1,049 times

Last updated: Jan 31 '17