Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
character(len=MaxNameLength), | public | :: | NodeName | = | ' ' | ||
integer, | public | :: | SupNodeNum | = | 0 | ||
integer, | public | :: | BlowerPowerCurveID | = | 0 | ||
real(kind=r64), | public | :: | BlowerHeatLossFactor | = | 0.0d0 | ||
integer, | public | :: | AirSupRateMode | = | 0 | ||
real(kind=r64), | public | :: | Stoics | = | 0.0d0 | ||
integer, | public | :: | AirFuncPelCurveID | = | 0 | ||
real(kind=r64), | public | :: | AirTempCoeff | = | 0.0d0 | ||
integer, | public | :: | AirFuncNdotCurveID | = | 0 | ||
integer, | public | :: | IntakeRecoveryMode | = | 0 | ||
integer, | public | :: | ConstituentMode | = | 0 | ||
integer, | public | :: | NumConstituents | = | 0 | ||
character(len=MaxNameLength), | public, | DIMENSION(14) | :: | ConstitName | = | ' ' | |
real(kind=r64), | public, | DIMENSION(14) | :: | ConstitMolalFract | = | 0.0d0 | |
integer, | public, | DIMENSION(14) | :: | GasLibID | = | 0 | |
real(kind=r64), | public | :: | O2fraction | = | 0.0d0 | ||
real(kind=r64), | public | :: | TairIntoBlower | = | 0.0d0 | ||
real(kind=r64), | public | :: | TairIntoFCPM | = | 0.0d0 | ||
real(kind=r64), | public | :: | PairCompEl | = | 0.0d0 | ||
real(kind=r64), | public | :: | QskinLoss | = | 0.0d0 | ||
real(kind=r64), | public | :: | QintakeRecovery | = | 0.0d0 |
TYPE FCAirSupplyDataStruct
! user input data
CHARACTER(len=MaxNameLength) :: Name = ' ' !name of this
CHARACTER(len=MaxNameLength) :: NodeName = ' ' ! Air supply node name
INTEGER :: SupNodeNum = 0 ! Air supply node ID
INTEGER :: BlowerPowerCurveID = 0 ! "pointer" to blower power quadratic
REAL(r64) :: BlowerHeatLossFactor = 0.0d0 ! alpha for blower heat loss fraction
INTEGER :: AirSupRateMode = 0 ! control for modeling method used to deterime supply air flow rate
REAL(r64) :: Stoics = 0.0d0 !excess air ratio
INTEGER :: AirFuncPelCurveID = 0 !"pointer" to curve for air as function of power
REAL(r64) :: AirTempCoeff = 0.0d0 ! coeff a3 in equ 16.
INTEGER :: AirFuncNdotCurveID = 0 !"pointer" to curve for air as function of fuel flow rate
INTEGER :: IntakeRecoveryMode = 0 !
INTEGER :: ConstituentMode = 0 ! how are air data input
INTEGER :: NumConstituents = 0 !
CHARACTER(len=MaxNameLength), DIMENSION(14) :: ConstitName = ' '
REAL(r64), DIMENSION(14) :: ConstitMolalFract = 0.0d0
!Calculated values and input from elsewhere
INTEGER, DIMENSION(14) :: GasLibID = 0 ! lookup ID in Gas Phase ThermoChemistry Structure Array
REAL(r64) :: O2fraction = 0.0d0
REAL(r64) :: TairIntoBlower = 0.0d0 ! temperature entering blower
REAL(r64) :: TairIntoFCPM = 0.0d0 ! temperature leaving blower and entering FCPM
REAL(r64) :: PairCompEl = 0.0d0 ! power drawn by compressor
REAL(r64) :: QskinLoss = 0.0d0 ! pumping losses for zone
REAL(r64) :: QintakeRecovery = 0.0d0 !heat recovered on intake air by accessories
END TYPE FCAirSupplyDataStruct