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

How to model roof hanging hot water radiant panels?

asked 2015-02-20 09:25:31 -0500

Waseem's avatar

updated 2015-07-11 09:51:24 -0500

Hello All,

What is the best way to model roof hanging hot water radiant panels (picture below) in EnergyPlus/DesignBuilder?

Thanks

Radiant panels

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
2

answered 2015-02-20 13:40:15 -0500

For hanging radiant surfaces, it appears that you will have to create BuildingSurface objects assigned to each zone where the radiant system is operating. From the documentation, "Note that all of the surfaces within a single list must be a part of the same zone and that the zone of these surfaces must also match the zone the radiant system is attempting to condition.Only base surfaces (walls, roofs, floors) are valid. Window/Door surfaces and Internal Mass are not valid surface types for embedded radiant systems". This is the procedure that I have tried with success:

  1. Draw a hanging surface inside of the zone where radiant system is operating
  2. Assign that surface to be a ceiling with a zone outside boundary condition using the same zone
  3. Add that surface to the Radiant Surface Group Name object where you list all radiant surfaces in the zone
  4. Assign that Radiant Surface Group Name to the appropriate ZoneHVAC:LowTemperatureRadiant object you are using

For Zone A, an example of this arrangement in your IDF file can be found below.

ZoneHVAC:LowTemperatureRadiant:VariableFlow,
    Zone A Radiant Loop,         !- Name
    RADIANTSYSAVAILSCHED,    !- Availability Schedule Name
    Zone A,                              !- Zone Name
    Zone A Radiant Surfaces,    !- Surface Name or Radiant Surface Group Name
   ...

ZoneHVAC:LowTemperatureRadiant:SurfaceGroup,
   Zone A Radiant Surfaces,              ! - Radiant surface group name
   Zone A Hanging Panel 1,               ! - Name of surface 1
   0.2,                                             ! - Flow fraction for surface 1
   ...

BuildingSurface:Detailed,
    Zone A Hanging Panel 1,        !- Name
    Ceiling,                                !- Surface Type
    Radiant Panel Construction,  !- Construction Name
    Zone A,                                !- Zone Name
    Zone,                                   !- Outside Boundary Condition
    Zone A,                                !- Outside Boundary Condition Object
    ...

Construction:InternalSource,
    Radiant Panel Construction,      !- Name
    ...

I hope this helps!

edit flag offensive delete link more
2

answered 2015-02-20 13:01:24 -0500

updated 2015-02-20 13:07:28 -0500

I can't speak to DesignBuilder, but in OpenStudio the main EnergyPlus objects you'll need are:

Construction:InternalSource

ZoneHVAC:HighTemperatureRadiant

ZoneHVAC:LowTemperatureRadiant:* ConstantFlow, Electric, SurfaceGroup, or VariableFlow

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: 2015-02-20 09:25:31 -0500

Seen: 299 times

Last updated: Feb 20 '15