TYPE DisSysCompDetFanProp ! Detailed fan component
CHARACTER(len=MaxNameLength) :: Name = ' ' ! Name of constant volume fan component
REAL(r64) :: FlowCoef = 0.0d0 ! Coefficient for linear initialization
REAL(r64) :: FlowExpo = 0.0d0 ! Turbulent flow coefficient
REAL(r64) :: RhoAir = 0.0d0 ! Reference air density
REAL(r64) :: Qfree = 0.0d0 ! Free delivery flow at P=0
REAL(r64) :: Pshut = 0.0d0 ! Shutoff pressure at Q=0
REAL(r64) :: TranRat = 0.0d0 ! Flow coefficient at laminar/turbulent transition
INTEGER :: n ! Number of ranges for fan performance curve
REAL(r64), DIMENSION(:), ALLOCATABLE :: Coeff ! Coefficients of fan performance curve.
!Each range has a min flow rate and 4 coeffieincts
END TYPE DisSysCompDetFanProp