Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions idd/Energy+.idd.in
Original file line number Diff line number Diff line change
Expand Up @@ -23148,30 +23148,41 @@ ZoneBaseboard:OutdoorTemperatureControlled,
\type real
\units W
\minimum> 0
\autosizable
\default autosize
N2 , \field Low Temperature
\required-field
\units C
\type real
\autosizable
\default autosize
N3 , \field Capacity at High Temperature
\required-field
\type real
\units W
\minimum 0
\autosizable
\default autosize
N4 , \field High Temperature
\required-field
\units C
\type real
\autosizable
\default autosize
N5 , \field Fraction Radiant
\type real
\minimum 0.0
\maximum 1.0
\default 0
A4 ; \field End-Use Subcategory
A4 , \field End-Use Subcategory
\note Any text may be used here to categorize the end-uses in the ABUPS End Uses by Subcategory table.
\type alpha
\retaincase
\default General

N6 ; \field Design Zone Heating Setpoint
\type real
\units C
\default 20.0

SwimmingPool:Indoor,
\memo Specifies an indoor swimming pools linked to a floor surface.
Expand Down
8 changes: 8 additions & 0 deletions src/EnergyPlus/DataHeatBalance.hh
Original file line number Diff line number Diff line change
Expand Up @@ -1075,6 +1075,14 @@ namespace DataHeatBalance {
bool EMSZoneBaseboardOverrideOn = false; // EMS actuating equipment power if .TRUE.
Real64 EMSZoneBaseboardPower = 0.0; // Value EMS is directing to use for override
Real64 FractionRadiant = 0.0;
Real64 ZnHtgSetTemp = 0.0; // Design zone heating setpoint temperature
Real64 ZnMinOutTemp = 0.0; // Minimum outdoor temperature over design days
Real64 ExtSurfCondLoad = 0.0; // Conductional load through exterior surfaces by max temp diff
bool IsThisSized = false; // True if called once
bool InfilVentDone = false; // True if infiltration / ventilation loads were determined
// It is also used to skip second sizing call if necessary
bool CapatLowTempAutosize = false; // Flag to indicate autosize of the field in second sizing call
bool CapatHighTempAutosize = false; // Flag to indicate autosize of the field in second sizing call
Real64 FractionConvected = 0.0;
bool ManageDemand = false; // Flag to indicate whether to use demand limiting
Real64 DemandLimit = 0.0; // Demand limit set by demand manager [W]
Expand Down
Loading
Loading