CTGeneratorSpecs Derived Type

type, private :: CTGeneratorSpecs

Source Code


Components

TypeVisibility AttributesNameInitial
character(len=MaxNameLength), public :: Name =' '
character(len=MaxNameLength), public :: TypeOf ='Generator:CombustionTurbine'
integer, public :: CompType_Num =iGeneratorCombTurbine
character(len=MaxNameLength), public :: FuelType
real(kind=r64), public :: RatedPowerOutput =0.0d0
integer, public :: ElectricCircuitNode =0
real(kind=r64), public :: MinPartLoadRat =0.0d0
real(kind=r64), public :: MaxPartLoadRat =0.0d0
real(kind=r64), public :: OptPartLoadRat =0.0d0
real(kind=r64), public :: FuelEnergyUseRate =0.0d0
real(kind=r64), public :: FuelEnergy =0.0d0
integer, public :: PLBasedFuelInputCurve =0
integer, public :: TempBasedFuelInputCurve =0
real(kind=r64), public :: ExhaustFlow =0.0d0
integer, public :: ExhaustFlowCurve =0
real(kind=r64), public :: ExhaustTemp =0.0d0
integer, public :: PLBasedExhaustTempCurve =0
integer, public :: TempBasedExhaustTempCurve =0
real(kind=r64), public :: QLubeOilRecovered =0.0d0
real(kind=r64), public :: QExhaustRecovered =0.0d0
real(kind=r64), public :: QTotalHeatRecovered =0.0d0
real(kind=r64), public :: LubeOilEnergyRec =0.0d0
real(kind=r64), public :: ExhaustEnergyRec =0.0d0
real(kind=r64), public :: TotalHeatEnergyRec =0.0d0
integer, public :: QLubeOilRecoveredCurve =0
real(kind=r64), public :: UA =0.0d0
real(kind=r64), public, DIMENSION(2):: UACoef =0.0d0
real(kind=r64), public :: MaxExhaustperCTPower =0.0d0
real(kind=r64), public :: DesignHeatRecVolFlowRate =0.0d0
real(kind=r64), public :: DesignHeatRecMassFlowRate =0.0d0
real(kind=r64), public :: DesignMinExitGasTemp =0.0d0
real(kind=r64), public :: DesignAirInletTemp =0.0d0
real(kind=r64), public :: ExhaustStackTemp =0.0d0
logical, public :: HeatRecActive =.false.
integer, public :: HeatRecInletNodeNum =0
integer, public :: HeatRecOutletNodeNum =0
real(kind=r64), public :: HeatRecInletTemp =0.0d0
real(kind=r64), public :: HeatRecOutletTemp =0.0d0
real(kind=r64), public :: HeatRecMdot =0.0d0
integer, public :: HRLoopNum =0
integer, public :: HRLoopSideNum =0
integer, public :: HRBranchNum =0
integer, public :: HRCompNum =0
real(kind=r64), public :: FuelMdot =0.0d0
real(kind=r64), public :: FuelHeatingValue =0.0d0
real(kind=r64), public :: ElecPowerGenerated =0.0d0
real(kind=r64), public :: ElecEnergyGenerated =0.0d0
real(kind=r64), public :: HeatRecMaxTemp =0.0d0
integer, public :: OAInletNode =0

Source Code

TYPE CTGeneratorSpecs
       CHARACTER(len=MaxNameLength) :: Name           = ' ' ! user identifier
       CHARACTER(len=MaxNameLength) :: TypeOf         = 'Generator:CombustionTurbine' ! Type of Generator
       INTEGER           :: CompType_Num              = iGeneratorCombTurbine
       CHARACTER(len=MaxNameLength) :: FuelType             ! Type of Fuel - DIESEL, GASOLINE, GAS
       REAL(r64)         :: RatedPowerOutput          = 0.0d0 ! W - design nominal capacity of Generator
       INTEGER           :: ElectricCircuitNode       = 0   ! Electric Circuit Node
       REAL(r64)         :: MinPartLoadRat            = 0.0d0 ! (CT MIN) min allowed operating frac full load
       REAL(r64)         :: MaxPartLoadRat            = 0.0d0 ! (CT MAX) max allowed operating frac full load
       REAL(r64)         :: OptPartLoadRat            = 0.0d0 ! (CT BEST) optimal operating frac full load
       REAL(r64)         :: FuelEnergyUseRate         = 0.0d0 !(EFUEL) rate of Fuel Energy Required to run COMBUSTION turbine (W)
       REAL(r64)         :: FuelEnergy                = 0.0d0 !Amount of Fuel Energy Required to run COMBUSTION turbine (J)
       INTEGER           :: PLBasedFuelInputCurve     = 0   !(FUL1GC) Curve Index for Part Load Ratio Based Fuel Input
                                                            ! Coefficients Poly Fit
       INTEGER           :: TempBasedFuelInputCurve   = 0   !(FUL2GC) Curve Index for Ambient Temperature Based Fuel Input
                                                            ! Coeff Poly Fit
       REAL(r64)         :: ExhaustFlow               = 0.0d0 !(FEX) Exhaust Gas Flow Rate cubic meters per second???
       INTEGER           :: ExhaustFlowCurve          = 0   !(FEXGC) Curve Index for Exhaust Gas Flow Rate Input Coef Poly Fit
       REAL(r64)         :: ExhaustTemp               = 0.0d0 !(TEX) Exhaust Gas Temperature in C
       INTEGER           :: PLBasedExhaustTempCurve   = 0   !(TEX1GC) Curve Index for Part Load Ratio Based Exhaust Temp Input
                                                            ! Coeffs Poly Fit
       INTEGER           :: TempBasedExhaustTempCurve = 0   !(TEX2GC) Curve Index for Ambient Temperature Based Exhaust Gas Temp to
                                                            ! Fuel Energy Input Coeffs Poly Fit
       REAL(r64)         :: QLubeOilRecovered         = 0.0d0 !(ELUBE) Recovered Lube Oil Energy (W)
       REAL(r64)         :: QExhaustRecovered         = 0.0d0 !(EEX) Recovered Exhaust heat  (W)
       REAL(r64)         :: QTotalHeatRecovered       = 0.0d0 !total heat recovered (W)
       REAL(r64)         :: LubeOilEnergyRec          = 0.0d0 ! Recovered Lube Oil Energy (J)
       REAL(r64)         :: ExhaustEnergyRec          = 0.0d0 ! Recovered Exhaust heat  (J)
       REAL(r64)         :: TotalHeatEnergyRec        = 0.0d0 !total heat recovered (J)
       INTEGER           :: QLubeOilRecoveredCurve    = 0   !(ELUBEGC) Curve Index for Recoverable Lube Oil heat Input Coef Poly Fit
       REAL(r64)         :: UA                        = 0.0d0 !(UACGC) exhaust gas Heat Exchanger UA
       REAL(r64),DIMENSION(2) :: UACoef                    = 0.0d0 !Heat Exchanger UA  Coeffs Poly Fit
       REAL(r64)         :: MaxExhaustperCTPower      = 0.0d0 !MAX EXHAUST FLOW PER W POWER OUTPUT COEFF
       REAL(r64)         :: DesignHeatRecVolFlowRate  = 0.0d0 ! m3/s, Design Water mass flow rate through heat recovery loop
       REAL(r64)         :: DesignHeatRecMassFlowRate = 0.0d0 ! kg/s, Design Water mass flow rate through heat recovery loop
       REAL(r64)         :: DesignMinExitGasTemp      = 0.0d0 !Steam Saturation Temperature (C)
       REAL(r64)         :: DesignAirInletTemp        = 0.0d0 !Design Turbine Air Inlet Temperature (C)
       REAL(r64)         :: ExhaustStackTemp          = 0.0d0 !turbine exhaust gas temp (C)
       LOGICAL           :: HeatRecActive             = .false. ! true when design max flow rate > 0
       INTEGER           :: HeatRecInletNodeNum       = 0   ! Node number on the heat recovery inlet side of the condenser
       INTEGER           :: HeatRecOutletNodeNum      = 0   ! Node number on the heat recovery outlet side of the condenser
       REAL(r64)         :: HeatRecInletTemp          = 0.0d0 !Inlet Temperature of the heat recovery fluid
       REAL(r64)         :: HeatRecOutletTemp         = 0.0d0 !Outlet Temperature of the heat recovery fluid
       REAL(r64)         :: HeatRecMdot               = 0.0d0 ! reporting: Heat Recovery Loop Mass flow rate
       INTEGER           :: HRLoopNum                 = 0   ! cooling water plant loop index number, for heat recovery
       INTEGER           :: HRLoopSideNum             = 0   ! cooling water plant loop side index, for heat recovery
       INTEGER           :: HRBranchNum               = 0   ! cooling water plant loop branch index, for heat recovery
       INTEGER           :: HRCompNum                 = 0   ! cooling water plant loop component index, for heat recovery

       REAL(r64)         :: FuelMdot                  = 0.0d0 ! reporting: Fuel Amount used (kg/s)
       REAL(r64)         :: FuelHeatingValue          = 0.0d0 !Heating Value for Fuel in (kJ/kg)
       REAL(r64)         :: ElecPowerGenerated        = 0.0d0 ! reporting: power generated (W)
       REAL(r64)         :: ElecEnergyGenerated       = 0.0d0 ! reporting: power generated (W)
       REAL(r64)         :: HeatRecMaxTemp            = 0.0d0 !Max Temp that can be produced in heat recovery
       INTEGER           :: OAInletNode               = 0   ! optional inlet node index pointer for outdoor air for compustion
END TYPE CTGeneratorSpecs

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