Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
integer, | public | :: | NumOfSpeedCooling | = | 0 | ||
integer, | public | :: | NumOfSpeedHeating | = | 0 | ||
real(kind=R64), | public, | DIMENSION(:), ALLOCATABLE | :: | CoolingVolFlowRatio | |||
real(kind=R64), | public, | DIMENSION(:), ALLOCATABLE | :: | HeatingVolFlowRatio |
TYPE DesignSpecMSHPData
CHARACTER(len=MaxNameLength) :: Name =' ' ! Name of the design specification MSHP
INTEGER :: NumOfSpeedCooling = 0 ! The number of speeds for cooling
INTEGER :: NumOfSpeedHeating = 0 ! The number of speeds for heating
REAL(R64), DIMENSION(:), ALLOCATABLE :: CoolingVolFlowRatio ! The ratio of flow to max for this speed
REAL(R64), DIMENSION(:), ALLOCATABLE :: HeatingVolFlowRatio ! The ratio of flow to max for this speed
END TYPE DesignSpecMSHPData