NREL / EnergyPlus

EnergyPlus™ is a whole building energy simulation program that engineers, architects, and researchers use to model both energy consumption and water use in buildings.
https://energyplus.net
Other
1.13k stars 389 forks source link

Suggested IDD change for ElectricLoadCenter:Storage:Simple #5730

Open jmarrec opened 8 years ago

jmarrec commented 8 years ago

Issue overview

In the current form, the idd for ELC:Storage:Simple has absolutely no required fields and no defaults whatsoever. The documentation isn't helping either in this case (for eg it does not specify what it would default to). This makes it a little bit obscure for the user and hard to gauge what values are really needed and what are typical ones.

Details

I would propose the following .idd change, my addition are preceded by a '!'

ElectricLoadCenter:Storage:Simple,
       \memo Used to model storage of electricity in an electric load center.  This is a simple
       \memo model that does not attempt to represent any of the characteristics of a real
       \memo storage device such as a battery.  The type of power, AC or DC, depends on
       \memo the configuration chosen as the Electrical Buss Type in the
       \memo ElectricLoadCenter:Distribution object.
  A1,  \field Name
       \reference ElecStorageList
  A2,  \field Availability Schedule Name
       \note Availability schedule name for this system. Schedule value > 0 means the system is available.
       \note If this field is blank, the system is always available.
       \type object-list
       \object-list ScheduleNames
  A3,  \field Zone Name
       \note Enter name of zone to receive storage losses as heat
       \note if blank then storage is assumed to be outdoors
       \type object-list
       \object-list ZoneNames
 ! N1 , \field Radiative Fraction
       \maximum 1.0
       \minimum 0.0
!       \default 0.0
!       \note This field contains the fraction of storage losses that enter the zone as long-wave thermal radiation.
!       \note This should be a factor between 0.0 and 1.0. The balance of the losses are convective.
!       \note This field is not used if the previous field for 'Zone Name' is left blank.
  N2,  \field Nominal Energetic Efficiency for Charging
       \maximum 1.0
       \minimum 0.0
!       \default 1.0 or 0.8
  N3,  \field Nominal Energetic Efficiency for Discharging 
       \maximum 1.0
       \minimum 0.0
!       \default 1.0 or 0.8
  N4,  \field Maximum Storage Capacity
       \units J
!       \required-field
  N5,  \field Maximum Power for Discharging
       \units W
!       \default XXX or \required-field
!       \minimum 0.0
  N6,  \field Maximum Power for Charging
       \units W
!       \default XXX or \required-field
!       \minimum 0.0
  N7;  \field Initial State of Charge
       \units J
!      \note If blank, will default to the half the maximum storage capacity

Some additional details for this issue (if relevant):

Thoughts?

Checklist

Empty for now

mjwitte commented 8 years ago

@EnergyArchmage Would you agree with these proposed changes?