Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | cObjectName | = | ' ' | ||
character(len=MaxNameLength), | public | :: | EquipID | = | ' ' | ||
character(len=MaxNameLength), | public | :: | Schedule | = | ' ' | ||
integer, | public | :: | ZoneSupplyAirNode | = | 0 | ||
integer, | public | :: | SchedPtr | = | 0 | ||
real(kind=r64), | public | :: | MaxAirVolFlowRate | = | 0.0d0 | ||
real(kind=r64), | public | :: | AirMassFlowRateMax | = | 0.0d0 | ||
real(kind=r64), | public | :: | InitMaxAvailMassFlow | = | 0.0d0 | ||
real(kind=r64), | public | :: | AirMassFlowFraction | = | 0.0d0 | ||
integer, | public | :: | ZoneEquipAirInletNode | = | 0 | ||
real(kind=r64), | public | :: | SensOutputProvided | = | 0.0d0 | ||
logical, | public | :: | EMSOverrideAirFlow | = | .FALSE. | ||
real(kind=r64), | public | :: | EMSMassFlowRateValue | = | 0.0D0 | ||
real(kind=r64), | public | :: | HeatRate | = | 0.0d0 | ||
real(kind=r64), | public | :: | CoolRate | = | 0.0d0 | ||
real(kind=r64), | public | :: | HeatEnergy | = | 0.0d0 | ||
real(kind=r64), | public | :: | CoolEnergy | = | 0.0d0 |
TYPE DirectAirProps
! Input Data
CHARACTER(len=MaxNameLength) :: cObjectName =' '
CHARACTER(len=MaxNameLength) :: EquipID =' '
CHARACTER(len=MaxNameLength) :: Schedule =' '
INTEGER :: ZoneSupplyAirNode =0
INTEGER :: SchedPtr =0
REAL(r64) :: MaxAirVolFlowRate =0.0d0 !Max Specified Volume Flow Rate of Sys [m3/sec]
REAL(r64) :: AirMassFlowRateMax =0.0d0 !Max mass flow [kg/sec]
REAL(r64) :: InitMaxAvailMassFlow =0.0d0 !The Initial max mass Flow to set the Control Flow Fraction
REAL(r64) :: AirMassFlowFraction =0.0d0
Integer :: ZoneEquipAirInletNode =0
! Simulation Data
REAL(r64) :: SensOutputProvided =0.0d0
LOGICAL :: EMSOverrideAirFlow = .FALSE. ! if true, EMS is calling to override flow rate
REAL(r64) :: EMSMassFlowRateValue = 0.0D0 ! value EMS is directing to use for flow rate [kg/s]
!Reporting Variables
REAL(r64) :: HeatRate =0.0d0
REAL(r64) :: CoolRate =0.0d0
REAL(r64) :: HeatEnergy =0.0d0
REAL(r64) :: CoolEnergy =0.0d0
END TYPE DirectAirProps