TYPE SteamBaseboardParams
CHARACTER(len=MaxNameLength) :: EquipID =' '
INTEGER :: EquipType =0
CHARACTER(len=MaxNameLength) :: Schedule =' '
CHARACTER(len=MaxNameLength), ALLOCATABLE, DIMENSION(:) :: SurfaceName
INTEGER, ALLOCATABLE, DIMENSION(:) :: SurfacePtr
INTEGER :: ZonePtr = 0
INTEGER :: SchedPtr = 0 ! Pointer to the correct schedule
INTEGER :: SteamInletNode = 0 ! Inlet steam baseboard node
INTEGER :: SteamOutletNode = 0 ! Outlet steam baseboard node
INTEGER :: TotSurfToDistrib = 0 ! Total numbers of the surfaces that the radiant heat gets distributed
INTEGER :: FluidIndex = 0 ! Fluid index for FluidProperties (Steam)
INTEGER :: ControlCompTypeNum = 0
INTEGER :: CompErrIndex = 0
REAL(r64) :: DegofSubCooling =0.0d0 ! Temperature differences due to subcooling of the condensate [C]
REAL(r64) :: Offset =0.0d0 ! Control accuracy
REAL(r64) :: SteamMassFlowRate =0.0d0 ! Mass flow rate of steam passing through the heater [kg/s]
REAL(r64) :: SteamMassFlowRateMax =0.0d0 ! Maximum mass flow rate of steam [kg/s]
REAL(r64) :: SteamVolFlowRateMax =0.0d0 ! Maximum volumetric flow rate of steam [m3/s]
REAL(r64) :: SteamOutletTemp =0.0d0 ! Outlet steam temperature from the heater [C]
REAL(r64) :: SteamInletTemp =0.0d0 ! Inlet steam temperature [C]
REAL(r64) :: SteamInletEnthalpy =0.0d0 ! Enthalpy of the steam delivered from the boiler [J/kg]
REAL(r64) :: SteamOutletEnthalpy =0.0d0 ! Enthalpy of the steam leaving the heater [J/kg]
REAL(r64) :: SteamInletPress =0.0d0 ! Pressure of steam at the inlet of the heater [Pa]
REAL(r64) :: SteamOutletPress =0.0d0 ! Pressure of steam at the outlet of the heater [Pa]
REAL(r64) :: SteamInletQuality =0.0d0 ! Quality of steam at the inlet of the heater [Pa]
REAL(r64) :: SteamOutletQuality =0.0d0 ! Quality of steam at the outlet of the heater [Pa]
REAL(r64) :: FracRadiant =0.0d0 ! User defined fraction for radiant heat addition
REAL(r64) :: FracConvect =0.0d0 ! Fraction for convective heat addition
REAL(r64) :: FracDistribPerson =0.0d0 ! Fraction for radiant heat incident on people
REAL(r64), ALLOCATABLE, DIMENSION(:) :: FracDistribToSurf
REAL(r64) :: TotPower =0.0d0 ! Convective system impact rate that the heater actually meets [W]
REAL(r64) :: Power =0.0d0 ! Maximum heating rate [W]
REAL(r64) :: ConvPower =0.0d0 ! Convective heating rate [W]
REAL(r64) :: RadPower =0.0d0 ! Radiant heating rate [W]
REAL(r64) :: TotEnergy =0.0d0 ! Convective system impact energy [J]
REAL(r64) :: Energy =0.0d0 ! Maximum heating energy [J]
REAL(r64) :: ConvEnergy =0.0d0 ! Convective heating energy [J]
REAL(r64) :: RadEnergy =0.0d0 ! Radiant heating energy [J]
INTEGER :: LoopNum =0 ! plant loop index
INTEGER :: LoopSideNum =0 ! plant loop side index
INTEGER :: BranchNum =0 ! plant loop branch index
INTEGER :: CompNum =0 ! plant loop component index
INTEGER :: BBLoadReSimIndex =0 !
INTEGER :: BBMassFlowReSimIndex =0
INTEGER :: BBInletTempFlowReSimIndex =0
END TYPE SteamBaseboardParams