TYPE WindTurbineParams
CHARACTER(len=MaxNameLength) :: Name =' ' ! The component name
CHARACTER(len=MaxNameLength) :: Schedule =' ' ! Available schedule
INTEGER :: RotorType = 0 ! Rotor type (HAWT or VAWT)
INTEGER :: ControlType = 0 ! Control type
INTEGER :: SchedPtr = 0 ! Schedule
INTEGER :: NumOfBlade = 0 ! Blade number
REAL(r64) :: RatedRotorSpeed = 0.0d0 ! Rated rotor speed in m/s
REAL(r64) :: RotorDiameter = 0.0d0 ! Diameter of rotor in m
REAL(r64) :: RotorHeight = 0.0d0 ! Overall height of the rotor in m
REAL(r64) :: RatedPower = 0.0d0 ! Nominal average power outpout at the rated wind speed in Watts
REAL(r64) :: RatedWindSpeed = 0.0d0 ! Rated wind speed showing maximum power output in Watts
REAL(r64) :: CutInSpeed = 0.0d0 ! Minimum wind speed for system operation in m/s
REAL(r64) :: CutOutSpeed = 0.0d0 ! Maximum wind speed for system operation in m/s
REAL(r64) :: SysEfficiency = 0.0d0 ! Overall system efficiency including subsystems and losses
REAL(r64) :: MaxTipSpeedRatio = 0.0d0 ! Maximum tip speed ratio
REAL(r64) :: MaxPowerCoeff = 0.0d0 ! Maximum power coefficient
REAL(r64) :: LocalAnnualAvgWS = 0.0d0 ! Annual average wind speed locally measured in m/s
REAL(r64) :: AnnualTMYWS = 0.0d0 ! Annual average wind speed from stat file in m/s
REAL(r64) :: HeightForLocalWS = 0.0d0 ! Height of the local station in m
REAL(r64) :: ChordArea = 0.0d0 ! Chord area of a single blade for VAWTs in m2
REAL(r64) :: DragCoeff = 0.0d0 ! Empirical blade drag coefficient for VAWTs
REAL(r64) :: LiftCoeff = 0.0d0 ! Empirical blade lift coefficient for VAWTs
REAL(r64) :: PowerCoeffC1 = 0.0d0 ! Empirical power coefficient 1 for analytical calculation
REAL(r64) :: PowerCoeffC2 = 0.0d0 ! Empirical power coefficient 2 for analytical calculation
REAL(r64) :: PowerCoeffC3 = 0.0d0 ! Empirical power coefficient 3 for analytical calculation
REAL(r64) :: PowerCoeffC4 = 0.0d0 ! Empirical power coefficient 4 for analytical calculation
REAL(r64) :: PowerCoeffC5 = 0.0d0 ! Empirical power coefficient 5 for analytical calculation
REAL(r64) :: PowerCoeffC6 = 0.0d0 ! Empirical power coefficient 6 for analytical calculation
REAL(r64) :: TotPower = 0.0d0 ! Maximum power produced from the wind in Watts
REAL(r64) :: Power = 0.0d0 ! Actual power wind turbine supplies to the building in Watts
REAL(r64) :: TotEnergy = 0.0d0 ! Maximum energy produced from the wind in Joules
REAL(r64) :: Energy = 0.0d0 ! Actual energy wind turbine supplies to the building in Joules
REAL(r64) :: LocalWindSpeed = 0.0d0 ! Local wind speed estimated at the particular height in m/s
REAL(r64) :: LocalAirDensity = 0.0d0 ! Local air density estimated at the particular height kg/m3
REAL(r64) :: PowerCoeff = 0.0d0 ! Power coefficient determined
REAL(r64) :: ChordalVel = 0.0d0 ! Chordal velocity for VAWTs in m/s
REAL(r64) :: NormalVel = 0.0d0 ! Normal velocity for VAWTs in m/s
REAL(r64) :: RelFlowVel = 0.0d0 ! Relative flow velocity for VAWTs in m/s
REAL(r64) :: TipSpeedRatio = 0.0d0 ! Relative flow velocity for VAWTs in m/s
REAL(r64) :: WSFactor = 0.0d0 ! Relative flow velocity for VAWTs in m/s
REAL(r64) :: AngOfAttack = 0.0d0 ! Angle of attack in degree
REAL(r64) :: IntRelFlowVel = 0.0d0 ! Integral of relative flow velocity
REAL(r64) :: TanForce = 0.0d0 ! Tnagential force
REAL(r64) :: NorForce = 0.0d0 ! Normal force in N.m
REAL(r64) :: TotTorque = 0.0d0 ! Total torque in N.m
REAL(r64) :: AzimuthAng = 0.0d0 ! Azimuth angle between blades
END TYPE WindTurbineParams