1

EnergyPlus Starting coordinate setup for adiabatic ceiling and floor

Hi there, I have a model of a single-story building, and for research purposes I want to minimize the heat transfer from the roof and floor of the building, so I thought of setting it to be adiabatic. I know from the error file of the simulation result that I may need to set the coordinates:

** Severe  ** Ceiling:Adiabatic="CA1", Too few number of numeric args=[0].
** Severe  ** Ceiling:Adiabatic="CA1", Surface Area <= 0.0; Entered Area=0.00

I can see many groups of coordinates in "BuildingSurface:Detailed" such as "Vertex 1 X-coordinate, Vertex 2 X-coordinate,Vertex 1 Y-coordinate", I want to know how to choose the correct coordinates. Thanks in advance

Louis W's avatar
11
Louis W
asked 2023-05-05 06:53:36 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2023-05-07 07:23:43 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

Look up the overview and examples here. By default, EnergyPlus relies on a counterclockwise sequential vertex entry convention, when looking at a surface from outside its parent space/zone. A rectangular, adiabatic floor could thus be:

BuildingSurface:Detailed,
    Z1:Floor,    !- Base Surface Name
    Floor, Slab, !- Class and Construction Name
    ZONE1,       !- Zone
    Adiabatic,,  !- Outside Boundary Condition  and Target (if applicable)
    NoSun,       !- Solar Exposure
    NoWind,      !- Wind Exposure
    0,           !- VF to Ground
    4,           !- Rectangle
    9.0,  9.0,  0.0,
    9.0,  0.0,  0.0,
    0.0,  0.0,  0.0,
    0.0,  9.0,  0.0;

If such a rectangular space/zone is not fully enclosed with other surfaces (at a minimum, 4x walls + 1x ceiling), then its ceiling height & volume should be defined explicitly.

Denis Bourgeois's avatar
2.8k
Denis Bourgeois
answered 2023-05-07 14:32:55 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you Denis!

Louis W's avatar Louis W (2023-05-11 13:55:46 -0500) edit
add a comment see more comments