WindTurbineParams Derived Type

type, public :: WindTurbineParams

Source Code


Components

TypeVisibility AttributesNameInitial
character(len=MaxNameLength), public :: Name =' '
character(len=MaxNameLength), public :: Schedule =' '
integer, public :: RotorType =0
integer, public :: ControlType =0
integer, public :: SchedPtr =0
integer, public :: NumOfBlade =0
real(kind=r64), public :: RatedRotorSpeed =0.0d0
real(kind=r64), public :: RotorDiameter =0.0d0
real(kind=r64), public :: RotorHeight =0.0d0
real(kind=r64), public :: RatedPower =0.0d0
real(kind=r64), public :: RatedWindSpeed =0.0d0
real(kind=r64), public :: CutInSpeed =0.0d0
real(kind=r64), public :: CutOutSpeed =0.0d0
real(kind=r64), public :: SysEfficiency =0.0d0
real(kind=r64), public :: MaxTipSpeedRatio =0.0d0
real(kind=r64), public :: MaxPowerCoeff =0.0d0
real(kind=r64), public :: LocalAnnualAvgWS =0.0d0
real(kind=r64), public :: AnnualTMYWS =0.0d0
real(kind=r64), public :: HeightForLocalWS =0.0d0
real(kind=r64), public :: ChordArea =0.0d0
real(kind=r64), public :: DragCoeff =0.0d0
real(kind=r64), public :: LiftCoeff =0.0d0
real(kind=r64), public :: PowerCoeffC1 =0.0d0
real(kind=r64), public :: PowerCoeffC2 =0.0d0
real(kind=r64), public :: PowerCoeffC3 =0.0d0
real(kind=r64), public :: PowerCoeffC4 =0.0d0
real(kind=r64), public :: PowerCoeffC5 =0.0d0
real(kind=r64), public :: PowerCoeffC6 =0.0d0
real(kind=r64), public :: TotPower =0.0d0
real(kind=r64), public :: Power =0.0d0
real(kind=r64), public :: TotEnergy =0.0d0
real(kind=r64), public :: Energy =0.0d0
real(kind=r64), public :: LocalWindSpeed =0.0d0
real(kind=r64), public :: LocalAirDensity =0.0d0
real(kind=r64), public :: PowerCoeff =0.0d0
real(kind=r64), public :: ChordalVel =0.0d0
real(kind=r64), public :: NormalVel =0.0d0
real(kind=r64), public :: RelFlowVel =0.0d0
real(kind=r64), public :: TipSpeedRatio =0.0d0
real(kind=r64), public :: WSFactor =0.0d0
real(kind=r64), public :: AngOfAttack =0.0d0
real(kind=r64), public :: IntRelFlowVel =0.0d0
real(kind=r64), public :: TanForce =0.0d0
real(kind=r64), public :: NorForce =0.0d0
real(kind=r64), public :: TotTorque =0.0d0
real(kind=r64), public :: AzimuthAng =0.0d0

Source Code

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

ActuatorUsedType AiflowNetworkReportProp AirChillerSetData AirConnectionStruct AirflowNetworkCompProp AirflowNetworkExchangeProp AirflowNetworkLinkageProp AirflowNetworkLinkReportData AirflowNetworkLinkSimuData AirflowNetworkNodeProp AirflowNetworkNodeReportData AirflowNetworkNodeSimuData AirflowNetworkReportVars AirflowNetworkSimuProp AirIn AirLoopBranchData AirLoopCompData AirLoopControlData AirLoopFlowData AirLoopMixerData AirLoopOutsideAirConnectData AirLoopSplitterData AirLoopStatsType AirLooptoZoneData AirLoopZoneEquipConnectData AirModelData AirNodeData AirPatternInfobyZoneStruct AirReportVars AirTerminalMixerData AngleFactorData BalancedDesDehumPerfData BaseboardParams BaseboardParams BaseCell BaseChillerSpecs BasementZoneInfo BaseReportVars BaseThermalPropertySet BasisElemDescr BasisStruct BatteryDichargeDataStruct BBHeatData BinObjVarIDType BinResultsType BinStatisticsType BLASTAbsorberSpecs BoilerSpecs BoilerSpecs BoundingBoxVertStruct BranchData BranchData BranchListData BSDFBkSurfDescr BSDFDaylghtGeomDescr BSDFDaylghtPosition BSDFGeomDescr BSDFLayerAbsorpStruct BSDFRefPoints BSDFRefPointsGeomDescr BSDFStateDescr BSDFWindowDescript BSDFWindowGeomDescr BSDFWindowInputStruct cached_psat_t cached_twb_t CartesianCell CartesianPipeCellInformation CaseAndWalkInListDef CaseRAFractionData CaseWIZoneReportData CashFlowType CBVAVData CECInverterLookUpTableData CFSFILLGAS CFSGAP CFSLAYER CFSLWP CFSSWP CFSTY CGSHPNodeData ChargeBlockType ChargeSimpleType ChillerheaterSpecs CHReportVars CoefficientProps CoilCreditData CoilType CollectorData ColumnTagType CommonPipeData CompData CompDesWaterFlowData ComponentData ComponentData ComponentListData ComponentNameData ComponentProps ComponentSetPtData CompressorListDef CompSizeTableEntryType ComputationType ConnectAirSysComp ConnectAirSysSubComp ConnectAirSysSubSubComp ConnectedLoopData ConnectionPoint ConnectorData ConnectZoneComp ConnectZoneSubComp ConnectZoneSubSubComp ConstantFlowRadiantSystemData ConstCOPChillerSpecs ConstCOPReportVars ConstGradPattern ConstructionData ConstructionDataFD ContaminantData ControllerListProps ControllerPropsType ControllerStatsType ControlList ControlsType ConvectionCoefficient CoolBeamData CoolTowerParams CostAdjustmentStruct CostLineItemStruct CTGeneratorSpecs CurSimConditionsInfo CVData CVDVParameters CVFlow DamperDesignParams DamperFlowConditions DataPeriodData DataSetPointManager DaylightSavingPeriodData DayScheduleData DayWeatherVariables DCtoACInverterStruct DefineASHRAEAdaptiveOptimumStartCoeffs DefineColdestSetPointManager DefineCondEntSetPointManager DefineDiffTSysAvailManager DefineFollowOATempSetPointManager DefineFollowSysNodeTempSetPointManager DefineGroundTempSetPointManager DefineHiLoSysAvailManager DefineHybridVentSysAvailManager DefineIdealCondEntSetPointManager DefineLinearModelNode DefineMixedAirSetPointManager DefineNightCycSysAvailManager DefineNightVentSysAvailManager DefineOAPretreatSetPointManager DefineOptStartSysAvailManager DefineOutsideAirSetPointManager DefinePriAirSysAvailMgrs DefinePrimaryAirSystem DefineSchedDualSetPointManager DefineSchedOffSysAvailManager DefineSchedOnSysAvailManager DefineSchedSysAvailManager DefineScheduledSetPointManager DefineSurfaceSettings DefineSZCoolingSetPointManager DefineSZHeatingSetPointManager DefineSZMaxHumSetPointManager DefineSZMinHumSetPointManager DefineSZOneStageCoolinggSetPointManager DefineSZOneStageHeatingSetPointManager DefineSZReheatSetPointManager DefineWarmestSetPointManager DefineZoneCompAvailMgrs DefineZoneData DefMultiZoneAverageCoolingSetPointManager DefMultiZoneAverageHeatingSetPointManager DefMultiZoneAverageMaxHumSetPointManager DefMultiZoneAverageMinHumSetPointManager DefMultiZoneMaxHumSetPointManager DefMultiZoneMinHumSetPointManager DefRABFlowSetPointManager DefWarmestSetPtManagerTempFlow DemandManagerData DemandManagerListData DesDayWeathData DesiccantDehumidifierData DesignDayData DesignSpecMSHPData DetailedIceStorageData DirectAirProps DirectionNeighbor_Dictionary DirectionReal_Dictionary DisSysCompCoilProp DisSysCompCPDProp DisSysCompCVFProp DisSysCompDamperProp DisSysCompDetFanProp DisSysCompDuctProp DisSysCompELRProp DisSysCompHXProp DisSysCompLeakProp DisSysCompTermUnitProp DisSysLinkageProp DisSysNodeProp DistributionStructure DomainRectangle dTriangle DuctData DVData DXCoilData DXCoolingConditions DXHeatPumpSystemStruct EarthTubeData EarthTubeZoneReportVars EconVarType ElecBaseboardParams ElecStorageDataStruct ElectricChillerSpecs ElectricEIRChillerSpecs ElectricPowerLoadCenter ElectricRadiantSystemData ElectricReportVars ElectricTransformer EMSActuatorAvailableType EMSProgramCallManagementType EndUseCategoryType Energy EngineDrivenChillerSpecs EngineDrivenReportVars EnvironmentData EqNodeConnectionDef EquipConfiguration EquipList EquipListCompData EquipListPtrData EquipmentData EquipMeterData EquipOpList ErlExpressionType ErlStackType ErlValueType ErlVariableType EvapConditions EvapFluidCoolerInletConds EvapFluidCoolerspecs ExhaustAbsorberSpecs ExtendedFluidProperties ExteriorEquipmentUsage ExteriorLightUsage ExtVentedCavityStruct Face FanCoilData FanEquipConditions FarfieldInfo FaultProperties FCAirSupplyDataStruct FCAuxilHeatDataStruct FCDataStruct FCElecStorageDataStruct FCExhaustHXDataStruct FCInverterDataStruct FCPowerModuleStruct FCReportDataStruct FCStackCoolerDataStruct FCWaterSupplyDataStruct FenestrationSolarAbsorbed FileSectionsDefinition FluidCellInformation FluidCoolerInletConds FluidCoolerspecs FluidPropsGlycolData FluidPropsGlycolErrors FluidPropsGlycolRawData FluidPropsRefrigerantData FluidPropsRefrigErrors FrameDividerProperties FuelTypeProps FullDomainStructureInfo FurnaceEquipConditions GapDeflectionState GapSupportPillar GasAbsorberSpecs GasPropertyDataStruct GasTurbineReportVars GenData GeneratorDynamicsManagerStruct GeneratorFuelSupplyDataStruct GenericComponentZoneIntGainStruct GlheSpecs GlobalInternalGainMiscObject GridRegion GroundwaterWellDataStruct GshpSpecs GshpSpecs GshpSpecs GTChillerSpecs HalfLoopData HcInsideFaceUserCurveStruct HcOutsideFaceUserCurveStruct HeatExchangerStruct HeatExchCond HeatingCoilEquipConditions HeatPumpWaterHeaterData HeatReclaimDXCoilData HeatReclaimRefrigCondenserData HeatReclaimRefrigeratedRackData HighTempRadiantSystemData HumidifierData HVACAirLoopIterationConvergenceStruct HVACNodeConvergLogStruct HVACZoneInletConvergenceStruct HWBaseboardParams HXAssistedCoilParameters HydronicRadiantSystemData ICEngineGeneratorSpecs IceStorageMapping IceStorageSpecs IllumMapData IndirectAbsorberSpecs IndUnitData InfiltrationData InsideFaceAdaptiveConvAlgoStruct InstructionType IntegerVariables IntegerVariableType InternalVarsAvailableType InternalVarsUsedType IntWinAdjZoneExtWinStruct IrrigationDataStruct LightsData LineDefinition LocalPipeData Location LoopPipeData LoopSidePumpInformation LoopSideReportVars m_FlowControlValidator MapCalcData MarkedNodeData MaterialDataFD MaterialProperties MatrixDataStruct MeshExtents MeshPartition MeshPartitions MeshProperties MeterArrayType MeterData MeterType MicroCHPDataStruct MicroCHPParamsNonNormalized MicroCHPReportDataStruct MissingData MissingDataCounts MixerConditions MixerData MixerData MixingData MoistureInfo monetaryUnitType MonthlyColumnsType MonthlyFieldSetInputType MonthlyInputType MonthlyTablesType MoreNodeData MSHeatPumpData MSHeatPumpReportData MTGeneratorSpecs MultizoneCompDetOpeningProp MultizoneCompExhaustFanProp MultizoneCompHorOpeningProp MultizoneCompSimpleOpeningProp MultizoneCPArrayProp MultizoneCPValueProp MultizoneExternalNodeProp MultizoneSurfaceCrackProp MultizoneSurfaceCrackStdCndns MultizoneSurfaceELAProp MultizoneSurfaceProp MultizoneZoneProp NamedMonthlyType NeighborInformation NightVentPerfData NodeConnectionDef NodeData NodeListDef NonrecurringCostType OAControllerData OAControllerProps OAEquipList OAMixerProps OARequirementsData OAUnitData ObjectsDefinition OperationData OperatorType OpSchemePtrData OptStartDataType OSCData OSCMData OutputReportingVariables OutputTableBinnedType OutputVarSensorType OutsideAirSysProps OutsideEnergySourceSpecs OutsideFaceAdpativeConvAlgoStruct PackagedTESCoolingCoilStruct ParametersData ParentListData PeopleData PerfCurveTableDataStruct PerfomanceCurveData PipeCircuitInfo PipeData PipeHeatTransferReport PipeHTData PipeSegmentInfo PlaneEq PlantAvailMgrData PlantCallingOrderInfoStruct PlantConnection PlantConnectionStruct PlantConnectionStruct PlantConvergencePoint PlantIterationConvergenceStruct PlantLocation PlantLocatorStruct PlantLoopData PlantPressureCurveData PlantProfileData PlantSizingData Point Point3DInteger Point3DReal PointF PointType PollutionProps Polyhedron PondGroundHeatExchangerData PondGroundHeatExchangerReport PowIndUnitData PTUnitData PumpSpecs PumpVFDControlData PVArrayStruct PVReportVariables PVTCollectorStruct PVTReportStruct QualifyType RadialCellInformation RadialSizing RadSysTypeData RainfallCollectorDataStruct RangeCheckDef RangeDataCounts RatchetType RealVariables RealVariableType RectangleF RecurringCostsType RecurringErrorData ReformulatedEIRChillerSpecs RefrigCaseCreditData RefrigCaseData RefrigCompressorData RefrigCondenserData RefrigGasCoolerData RefrigRackData RefrigSystemData ReportBranchData ReportCompData ReportEIRVars ReportingInformation ReportLoopData reportNameType ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReportVars ReqReportVariables ReturnAir RoofGeoCharactisticsStruct RootFinderDataType RunPeriodData RuntimeReportVarType ScheduleData ScheduleTypeData ScreenTransData SecondaryLoopData SecretObjects SectionsDefinition ShadingVertexData ShadowingCombinations ShadowRelateType ShelfData SimplePVParamsStruct SimplePVTModelStruct SimpleWatertoAirHPConditions SimulationControl SimulationOrder SiteRainFallDataStruct SlabListData SNLModuleParamsStuct SNLPVCalcStruct SNLPVInputStruct SolReflRecSurfData SolutionTrackerType SpecialDayData SpectralDataProperties SplitterConditions SplitterData SplitterData StackType StandAloneERVData SteamBaseboardParams SteamCoilEquipConditions StorageTankDataStruct StormWindowData StratifiedNodeData subcell SubcomponentData SubcoolerData SubEquipmentData SubSubcomponentData SubSubEquipmentData SubTableType SummarizeLoads SupplyAir SurfaceAssocNestedStruct SurfaceData SurfaceDataFD SurfaceErrorTracking SurfaceGroundHeatExchangerData SurfaceGroundHeatExchangerQTF SurfaceGroundHeatExchngrReport SurfaceListData SurfaceScreenProperties SurfaceSolarIncident SurfaceWindowCalc SurfMapPattern SysAvailManagerList SysDesignParams SysFlowConditions SystemSizingData SystemSizingInputData TableDataStruct TableEntryType TableLookupData TariffType TCGlazingsType TDDPipeData TemperaturePatternStruct TemperValveData TempGridRegionData TempLoopData TempVsHeightPattern TerminalUnitListData TermUnitSizingData ThermalChimneyData ThermalComfortDataType ThermalComfortInASH55Type ThermalComfortSetpointType ThermChimReportVars ThermChimZnReportVars TimeSteps timings TOCEntriesType TokenType TowerInletConds Towerspecs TransferLoadListDef TransRefrigSystemData TrendVariableType TriQuadraticCurveDataStruct TRNSYSPVCalcStruct TRNSYSPVModuleParamsStruct TStatObject TwoVertGradInterpolPattern TypicalExtremeData UFEData UFIData UnitarySystemData UnitConvType UnitHeaterData UnitVentilatorData UseAdjustmentType UsePriceEscalationType UserAirTerminalComponentStruct UserCoilComponentStruct UserPlantComponentStruct UserZoneHVACForcedAirComponentStruct UTSCDataStruct VariableSpeedCoilData VariableTypeForDDOutput vector Vector_2d VentilatedSlabData VentilationData VentilationMechanicalProps VRFCondenserEquipment VRFTerminalUnitEquipment VSTowerData WalkInData WarehouseCoilData WarmupConvergence WaterCoilEquipConditions WaterConnectionsType WaterEquipmentType WaterHeaterDesuperheaterData WaterHeaterSizingData WaterSourceSpecs WaterThermalTankData WatertoAirHPEquipConditions WaterUseTankConnectionStruct WeatherProperties WeekScheduleData WholeBuildingElectricPowerSummary WindACData WindowBlindProperties WindowComplexShade WindowIndex WindowShadingControlData WindowStateIndex WindowThermalModelParams WindTurbineParams WrapperComponentSpecs WrapperReportVars WrapperSpecs ZoneAirBalanceData ZoneAirDistributionData ZoneAirEquip ZoneCatEUseData ZoneComfortControls ZoneComfortControlsFangerData ZoneComfortFangerControlType ZoneCompTypeData ZoneContamGenericDataBLDiff ZoneContamGenericDataConstant ZoneContamGenericDataCutoff ZoneContamGenericDataDecay ZoneContamGenericDataDRS ZoneContamGenericDataDVS ZoneContamGenericDataPDriven ZoneContControls ZoneData ZoneDaylightCalc ZoneDehumidifierData ZoneEqSizingData ZoneEquipData ZoneEvapCoolerUnitStruct ZoneGroupData ZoneHumidityControls ZoneInternalGainsStruct ZoneListData ZoneListData ZonePreDefRepType ZonePurchasedAir ZoneReportVars ZoneReturnPlenumConditions ZoneSatgedControls ZoneSimData ZoneSizingData ZoneSizingInputData ZoneSupplyPlenumConditions ZoneSystemContaminantDemandData ZoneSystemDemandData ZoneSystemMoistureDemand ZoneTempControls ZoneTempControlType ZoneViewFactorInformation