TYPE DisSysCompDamperProp ! Damper component
CHARACTER(len=MaxNameLength) :: Name = ' ' ! Name of damper component
REAL(r64) :: LTP = 0.0d0 ! Value for laminar turbulent transition
REAL(r64) :: LamFlow = 0.0d0 ! Laminar flow coefficient
REAL(r64) :: TurFlow = 0.0d0 ! Turbulent flow coefficient
REAL(r64) :: FlowExpo = 0.0d0 ! Air Mass Flow exponent
REAL(r64) :: FlowMin = 0.0d0 ! Minimum control air mass rate
REAL(r64) :: FlowMax = 0.0d0 ! Maximum control air mass rate
REAL(r64) :: A0 = 0.0d0 ! First polynomial coefficient of the control variable (constant coefficient)
REAL(r64) :: A1 = 0.0d0 ! Second polynomial coefficient of the control variable (linear coefficient)
REAL(r64) :: A2 = 0.0d0 ! Third polynomial coefficient of the control variable (quadratic coefficient)
REAL(r64) :: A3 = 0.0d0 ! Fourth polynomial coefficient of the control variable (cubic coefficient)
END TYPE DisSysCompDamperProp