VSTowerData Derived Type

type, private :: VSTowerData

Source Code


Components

TypeVisibility AttributesNameInitial
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: Coeff
logical, public :: FoundModelCoeff =.FALSE.
real(kind=r64), public :: MinInletAirWBTemp =0.0d0
real(kind=r64), public :: MaxInletAirWBTemp =0.0d0
real(kind=r64), public :: MinRangeTemp =0.0d0
real(kind=r64), public :: MaxRangeTemp =0.0d0
real(kind=r64), public :: MinApproachTemp =0.0d0
real(kind=r64), public :: MaxApproachTemp =0.0d0
real(kind=r64), public :: MinWaterFlowRatio =0.0d0
real(kind=r64), public :: MaxWaterFlowRatio =0.0d0
real(kind=r64), public :: MaxLiquidToGasRatio =0.0d0
integer, public :: VSErrorCountFlowFrac =0
integer, public :: VSErrorCountWFRR =0
integer, public :: VSErrorCountIAWB =0
integer, public :: VSErrorCountTR =0
integer, public :: VSErrorCountTA =0
integer, public :: ErrIndexFlowFrac =0
integer, public :: ErrIndexWFRR =0
integer, public :: ErrIndexIAWB =0
integer, public :: ErrIndexTR =0
integer, public :: ErrIndexTA =0
integer, public :: ErrIndexLG =0
character(len=220), public :: TrBuffer1 =' '
character(len=300), public :: TrBuffer2 =' '
character(len=80), public :: TrBuffer3 =' '
character(len=220), public :: TwbBuffer1 =' '
character(len=300), public :: TwbBuffer2 =' '
character(len=80), public :: TwbBuffer3 =' '
character(len=220), public :: TaBuffer1 =' '
character(len=300), public :: TaBuffer2 =' '
character(len=80), public :: TaBuffer3 =' '
character(len=220), public :: WFRRBuffer1 =' '
character(len=300), public :: WFRRBuffer2 =' '
character(len=80), public :: WFRRBuffer3 =' '
character(len=220), public :: LGBuffer1 =' '
character(len=300), public :: LGBuffer2 =' '
character(len=80), public :: LGBuffer3 =' '
logical, public :: PrintTrMessage =.FALSE.
logical, public :: PrintTwbMessage =.FALSE.
logical, public :: PrintTaMessage =.FALSE.
logical, public :: PrintWFRRMessage =.FALSE.
logical, public :: PrintLGMessage =.FALSE.
real(kind=r64), public :: TrLast =0.0d0
real(kind=r64), public :: TwbLast =0.0d0
real(kind=r64), public :: TaLast =0.0d0
real(kind=r64), public :: WaterFlowRateRatioLast =0.0d0
real(kind=r64), public :: LGLast =0.0d0

Source Code

TYPE VSTowerData
! variables specific to variable-speed towers
  REAL(r64), ALLOCATABLE, DIMENSION(:) :: Coeff                       !- model coefficients
  LOGICAL                         :: FoundModelCoeff   = .FALSE. !- TRUE if model is calibratable
  REAL(r64)                       :: MinInletAirWBTemp = 0.0d0     !- model limit for min inlet air WB temp
  REAL(r64)                       :: MaxInletAirWBTemp = 0.0d0     !- model limit for max inlet air WB temp
  REAL(r64)                       :: MinRangeTemp      = 0.0d0     !- model limit for min range temp
  REAL(r64)                       :: MaxRangeTemp      = 0.0d0     !- model limit for max range temp
  REAL(r64)                       :: MinApproachTemp   = 0.0d0     !- model limit for min approach temp
  REAL(r64)                       :: MaxApproachTemp   = 0.0d0     !- model limit for max approach temp
  REAL(r64)                       :: MinWaterFlowRatio = 0.0d0     !- model limit for min water flow rate ratio
  REAL(r64)                       :: MaxWaterFlowRatio = 0.0d0     !- model limit for max water flow rate ratio
  REAL(r64)                       :: MaxLiquidToGasRatio = 0.0d0   !- model limit for max liquid to gas ratio
  INTEGER                         :: VSErrorCountFlowFrac  = 0   !- counter if water flow rate ratio limits are exceeded
  INTEGER                         :: VSErrorCountWFRR  = 0       !- counter if water flow rate ratio limits are exceeded
  INTEGER                         :: VSErrorCountIAWB  = 0       !- counter if inlet air wet-bulb temperature limits are exceeded
  INTEGER                         :: VSErrorCountTR    = 0       !- counter if tower range temperature limits are exceeded
  INTEGER                         :: VSErrorCountTA    = 0       !- counter if tower approach temperature limits are exceeded
  INTEGER                         :: ErrIndexFlowFrac  = 0       !- index to recurring error structure for liquid to gas ratio
  INTEGER                         :: ErrIndexWFRR      = 0       !- index to recurring error structure for water flow rate ratio
  INTEGER                         :: ErrIndexIAWB      = 0       !- index to recurring error structure for inlet air WB
  INTEGER                         :: ErrIndexTR        = 0       !- index to recurring error structure for tower range
  INTEGER                         :: ErrIndexTA        = 0       !- index to recurring error structure for tower approach
  INTEGER                         :: ErrIndexLG        = 0       !- index to recurring error structure for tower liquid/gas ratio
                                                                 !- Tr = Range temperature
  CHARACTER(len=220)              :: TrBuffer1         = ' '     !- buffer to print Tr warning messages on following time step
  CHARACTER(len=300)              :: TrBuffer2         = ' '     !- buffer to print Tr warning messages on following time step
  CHARACTER(len=80)               :: TrBuffer3         = ' '     !- buffer to print Tr warning messages on following time step
                                                                 !- Twb = Wet-bulb temperature
  CHARACTER(len=220)              :: TwbBuffer1        = ' '     !- buffer to print Twb warning messages on following time step
  CHARACTER(len=300)              :: TwbBuffer2        = ' '     !- buffer to print Twb warning messages on following time step
  CHARACTER(len=80)               :: TwbBuffer3        = ' '     !- buffer to print Twb warning messages on following time step
                                                                 !- Ta = Approach temperature
  CHARACTER(len=220)              :: TaBuffer1         = ' '     !- buffer to print Ta warning messages on following time step
  CHARACTER(len=300)              :: TaBuffer2         = ' '     !- buffer to print Ta warning messages on following time step
  CHARACTER(len=80)               :: TaBuffer3         = ' '     !- buffer to print Ta warning messages on following time step
                                                                 !- WFRR = Water flow rate ratio
  CHARACTER(len=220)              :: WFRRBuffer1       = ' '     !- buffer to print WFRR warning messages on following time step
  CHARACTER(len=300)              :: WFRRBuffer2       = ' '     !- buffer to print WFRR warning messages on following time step
  CHARACTER(len=80)               :: WFRRBuffer3       = ' '     !- buffer to print WFRR warning messages on following time step
                                                                 !- LG = Liquid to gas ratio
  CHARACTER(len=220)              :: LGBuffer1         = ' '     !- buffer to print LG warning messages on following time step
  CHARACTER(len=300)              :: LGBuffer2         = ' '     !- buffer to print LG warning messages on following time step
  CHARACTER(len=80)               :: LGBuffer3         = ' '     !- buffer to print LG warning messages on following time step
  LOGICAL                         :: PrintTrMessage    = .FALSE. !- flag to print Tr error message
  LOGICAL                         :: PrintTwbMessage   = .FALSE. !- flag to print Twb error message
  LOGICAL                         :: PrintTaMessage    = .FALSE. !- flag to print Ta error message
  LOGICAL                         :: PrintWFRRMessage  = .FALSE. !- flag to print WFRR error message
  LOGICAL                         :: PrintLGMessage    = .FALSE. !- flag to print liquid-gas ratio error message
  REAL(r64)                       :: TrLast            = 0.0d0 ! value of Tr when warning occurred (passed to Recurring Warning)
  REAL(r64)                       :: TwbLast           = 0.0d0 ! value of Twb when warning occurred (passed to Recurring Warning)
  REAL(r64)                       :: TaLast            = 0.0d0 ! value of Ta when warning occurred (passed to Recurring Warning)
  REAL(r64)                       :: WaterFlowRateRatioLast = 0.0d0 ! value of WFRR when warning occurred (passed to Recurring Warn)
  REAL(r64)                       :: LGLast            = 0.0d0      ! value of LG when warning occurred (passed to Recurring Warn)
END TYPE VSTowerData

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