SystemSizingData Derived Type

type, public :: SystemSizingData

Source Code


Components

TypeVisibility AttributesNameInitial
character(len=MaxNameLength), public :: AirPriLoopName =' '
character(len=MaxNameLength), public :: CoolDesDay =' '
character(len=MaxNameLength), public :: HeatDesDay =' '
integer, public :: LoadSizeType =0
integer, public :: SizingOption =0
integer, public :: CoolOAOption =0
integer, public :: HeatOAOption =0
real(kind=r64), public :: DesOutAirVolFlow =0.0d0
real(kind=r64), public :: SysAirMinFlowRat =0.0d0
real(kind=r64), public :: PreheatTemp =0.0d0
real(kind=r64), public :: PrecoolTemp =0.0d0
real(kind=r64), public :: PreheatHumRat =0.0d0
real(kind=r64), public :: PrecoolHumRat =0.0d0
real(kind=r64), public :: CoolSupTemp =0.0d0
real(kind=r64), public :: HeatSupTemp =0.0d0
real(kind=r64), public :: CoolSupHumRat =0.0d0
real(kind=r64), public :: HeatSupHumRat =0.0d0
integer, public :: CoolAirDesMethod =0
integer, public :: HeatAirDesMethod =0
real(kind=r64), public :: InpDesCoolAirFlow =0.0d0
real(kind=r64), public :: InpDesHeatAirFlow =0.0d0
real(kind=r64), public :: CoinCoolMassFlow =0.0d0
logical, public :: EMSOverrideCoinCoolMassFlowOn =.FALSE.
real(kind=r64), public :: EMSValueCoinCoolMassFlow =0.0D0
real(kind=r64), public :: CoinHeatMassFlow =0.0d0
logical, public :: EMSOverrideCoinHeatMassFlowOn =.FALSE.
real(kind=r64), public :: EMSValueCoinHeatMassFlow =0.0D0
real(kind=r64), public :: NonCoinCoolMassFlow =0.0d0
logical, public :: EMSOverrideNonCoinCoolMassFlowOn =.FALSE.
real(kind=r64), public :: EMSValueNonCoinCoolMassFlow =0.0D0
real(kind=r64), public :: NonCoinHeatMassFlow =0.0d0
logical, public :: EMSOverrideNonCoinHeatMassFlowOn =.FALSE.
real(kind=r64), public :: EMSValueNonCoinHeatMassFlow =0.0D0
real(kind=r64), public :: DesMainVolFlow =0.0d0
logical, public :: EMSOverrideDesMainVolFlowOn =.FALSE.
real(kind=r64), public :: EMSValueDesMainVolFlow =0.0D0
real(kind=r64), public :: DesHeatVolFlow =0.0d0
logical, public :: EMSOverrideDesHeatVolFlowOn =.FALSE.
real(kind=r64), public :: EMSValueDesHeatVolFlow =0.0D0
real(kind=r64), public :: DesCoolVolFlow =0.0d0
logical, public :: EMSOverrideDesCoolVolFlowOn =.FALSE.
real(kind=r64), public :: EMSValueDesCoolVolFlow =0.0D0
real(kind=r64), public :: SensCoolCap =0.0d0
real(kind=r64), public :: HeatCap =0.0d0
real(kind=r64), public :: PreheatCap =0.0d0
real(kind=r64), public :: CoolMixTemp =0.0d0
real(kind=r64), public :: CoolMixHumRat =0.0d0
real(kind=r64), public :: CoolRetTemp =0.0d0
real(kind=r64), public :: CoolRetHumRat =0.0d0
real(kind=r64), public :: CoolOutTemp =0.0d0
real(kind=r64), public :: CoolOutHumRat =0.0d0
real(kind=r64), public :: HeatMixTemp =0.0d0
real(kind=r64), public :: HeatMixHumRat =0.0d0
real(kind=r64), public :: HeatRetTemp =0.0d0
real(kind=r64), public :: HeatRetHumRat =0.0d0
real(kind=r64), public :: HeatOutTemp =0.0d0
real(kind=r64), public :: HeatOutHumRat =0.0d0
real(kind=r64), public :: DesCoolVolFlowMin =0.0d0
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: HeatFlowSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: CoolFlowSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SensCoolCapSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: HeatCapSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: PreHeatCapSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysCoolRetTempSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysCoolRetHumRatSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysHeatRetTempSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysHeatRetHumRatSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysCoolOutTempSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysCoolOutHumRatSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysHeatOutTempSeq
real(kind=r64), public, ALLOCATABLE, DIMENSION(:):: SysHeatOutHumRatSeq
integer, public :: SystemOAMethod =0
real(kind=r64), public :: MaxZoneOAFraction =0.0d0
real(kind=r64), public :: SysUncOA =0.0d0
logical, public :: OAAutosized =.FALSE.

Source Code

TYPE SystemSizingData             ! Contains data for system sizing
  CHARACTER &
    (len=MaxNameLength) :: AirPriLoopName           = ' '     ! name of an AirLoopHVAC object
  CHARACTER &
    (len=MaxNameLength) :: CoolDesDay               = ' '     ! name of a cooling design day
  CHARACTER &
    (len=MaxNameLength) :: HeatDesDay               = ' '     ! name of a heating design day
  INTEGER               :: LoadSizeType             = 0       ! type of load to size on;
                                                              ! 0=sensible, 1=latent, 2=total, 3=ventilation
  INTEGER               :: SizingOption             = 0       ! 1 = noncoincident, 2 = coincident.
  INTEGER               :: CoolOAOption             = 0       ! 1 = use 100% outside air; 2 = use min OA; for cooling sizing
  INTEGER               :: HeatOAOption             = 0       ! 1 = use 100% outside air; 2 = use min OA; for heating sizing
  REAL(r64)             :: DesOutAirVolFlow         = 0.0d0   ! design (minimum) outside air flow rate [m3/s]
  REAL(r64)             :: SysAirMinFlowRat         = 0.0d0   ! minimum system air flow ratio
  REAL(r64)             :: PreheatTemp              = 0.0d0   ! preheat design set temperature
  REAL(r64)             :: PrecoolTemp              = 0.0d0   ! precool design set temperature [C]
  REAL(r64)             :: PreheatHumRat            = 0.0d0   ! preheat design humidity ratio [kg water/kg dry air]
  REAL(r64)             :: PrecoolHumRat            = 0.0d0   ! precool design humidity ratio [kg water/kg dry air]
  REAL(r64)             :: CoolSupTemp              = 0.0d0   ! cooling design supply air temperature [C]
  REAL(r64)             :: HeatSupTemp              = 0.0d0   ! heating design supply air temperature[C]
  REAL(r64)             :: CoolSupHumRat            = 0.0d0   ! cooling design supply air humidity ratio [kg water/kg dry air]
  REAL(r64)             :: HeatSupHumRat            = 0.0d0   ! heating design supply air humidity ratio [kg water/kg dry air]
  INTEGER               :: CoolAirDesMethod         = 0       ! choice of how to get system design cooling air flow rates;
                                                              !  1 = calc from des day simulation; 2=m3/s per system, user input
  INTEGER               :: HeatAirDesMethod         = 0       ! choice of how to get system design heating air flow rates;
                                                              !  1 = calc from des day simulation; 2=m3/s per system, user input
  REAL(r64)             :: InpDesCoolAirFlow        = 0.0d0   ! input design system supply air flow rate [m3/s]
  REAL(r64)             :: InpDesHeatAirFlow        = 0.0d0   ! input design system heating supply air flow rate [m3/s]
  REAL(r64)             :: CoinCoolMassFlow         = 0.0d0   ! coincident peak cooling mass flow rate [kg/s]
  LOGICAL               :: EMSOverrideCoinCoolMassFlowOn = .FALSE. ! If true, EMS to change coincident peak cooling mass flow rate
  REAL(r64)             :: EMSValueCoinCoolMassFlow   = 0.0D0 ! Value EMS wants for coincident peak cooling mass flow rate [kg/s]

  REAL(r64)             :: CoinHeatMassFlow         = 0.0d0   ! coincident peak heating mass flow rate [kg/s]
  LOGICAL               :: EMSOverrideCoinHeatMassFlowOn = .FALSE. ! If true, EMS to set coincident peak heating mass flow rate
  REAL(r64)             :: EMSValueCoinHeatMassFlow   = 0.0D0 ! Value EMS wants for coincident peak heating mass flow rate [kg/s]

  REAL(r64)             :: NonCoinCoolMassFlow      = 0.0d0   ! noncoincident peak cooling mass flow rate [kg/s]
  LOGICAL               :: EMSOverrideNonCoinCoolMassFlowOn = .FALSE. ! true, EMS to set noncoincident peak cooling mass flow rate
  REAL(r64)             :: EMSValueNonCoinCoolMassFlow   = 0.0D0 ! Value EMS for noncoincident peak cooling mass flow rate [kg/s]

  REAL(r64)             :: NonCoinHeatMassFlow      = 0.0d0   ! noncoincident peak heating mass flow rate [kg/s]
  LOGICAL               :: EMSOverrideNonCoinHeatMassFlowOn = .FALSE. ! true, EMS to set noncoincident peak heating mass flow rate
  REAL(r64)             :: EMSValueNonCoinHeatMassFlow   = 0.0D0 ! Value EMS for noncoincident peak heating mass flow rate [kg/s]

  REAL(r64)             :: DesMainVolFlow           = 0.0d0   ! design main supply duct volume flow [m3/s]
  LOGICAL               :: EMSOverrideDesMainVolFlowOn = .FALSE. ! If true, EMS is acting to change DesMainVolFlow
  REAL(r64)             :: EMSValueDesMainVolFlow   = 0.0D0 ! Value EMS providing for design main supply duct volume flow [m3/s]

  REAL(r64)             :: DesHeatVolFlow           = 0.0d0   ! design heat supply duct volume flow [m3/s]
  LOGICAL               :: EMSOverrideDesHeatVolFlowOn = .FALSE. ! If true, EMS is acting to change DesCoolVolFlow
  REAL(r64)             :: EMSValueDesHeatVolFlow   = 0.0D0 ! Value EMS providing for design cool  supply duct volume flow [m3/s]

  REAL(r64)             :: DesCoolVolFlow           = 0.0d0   ! design cool  supply duct volume flow [m3/s]
  LOGICAL               :: EMSOverrideDesCoolVolFlowOn = .FALSE. ! If true, EMS is acting to change DesCoolVolFlow
  REAL(r64)             :: EMSValueDesCoolVolFlow   = 0.0D0 ! Value EMS providing for design cool  supply duct volume flow [m3/s]

  REAL(r64)             :: SensCoolCap              = 0.0d0   ! design sensible cooling capacity [W]
  REAL(r64)             :: HeatCap                  = 0.0d0   ! design heating capacity [W]
  REAL(r64)             :: PreheatCap               = 0.0d0   ! design preheat capacity [W]
  REAL(r64)             :: CoolMixTemp              = 0.0d0   ! design mixed air temperature for cooling [C]
  REAL(r64)             :: CoolMixHumRat            = 0.0d0   ! design mixed air hum ratio for cooling [kg water/kg dry air]
  REAL(r64)             :: CoolRetTemp              = 0.0d0   ! design return air temperature for cooling [C]
  REAL(r64)             :: CoolRetHumRat            = 0.0d0   ! design return air hum ratio for cooling [kg water/kg dry air]
  REAL(r64)             :: CoolOutTemp              = 0.0d0   ! design outside air temperature for cooling [C]
  REAL(r64)             :: CoolOutHumRat            = 0.0d0   ! design outside air hum ratio for cooling [kg water/kg dry air]
  REAL(r64)             :: HeatMixTemp              = 0.0d0   ! design mixed air temperature for heating [C]
  REAL(r64)             :: HeatMixHumRat            = 0.0d0   ! design mixed air hum ratio for heating [kg water/kg dry air]
  REAL(r64)             :: HeatRetTemp              = 0.0d0   ! design return air temperature for heating [C]
  REAL(r64)             :: HeatRetHumRat            = 0.0d0   ! design return air hum ratio for heating [kg water/kg dry air]
  REAL(r64)             :: HeatOutTemp              = 0.0d0   ! design outside air temperature for heating [C]
  REAL(r64)             :: HeatOutHumRat            = 0.0d0   ! design outside air hum ratio for Heating [kg water/kg dry air]
  REAL(r64)             :: DesCoolVolFlowMin        = 0.0d0   ! design minimum system cooling flow rate [m3/s]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: HeatFlowSeq         ! daily sequence of system heating air mass flow rate
                                                               !  (zone time step)
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: CoolFlowSeq         ! daily sequence of system cooling air mass flow rate
                                                               !  (zone time step)
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SensCoolCapSeq      ! daily sequence of system sensible cooling capacity
                                                               !  (zone time step)
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: HeatCapSeq          ! daily sequence of system heating capacity [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: PreHeatCapSeq       ! daily sequence of system preheat capacity [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysCoolRetTempSeq   ! daily sequence of system cooling return temperatures [C]
                                                               !  [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysCoolRetHumRatSeq ! daily sequence of system cooling return humidity ratios
                                                               !  [kg water/kg dry air] [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysHeatRetTempSeq   ! daily sequence of system heating return temperatures [C]
                                                               !   [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysHeatRetHumRatSeq ! daily sequence of system heating return humidity ratios
                                                               !  [kg water/kg dry air] [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysCoolOutTempSeq   ! daily sequence of system cooling outside temperatures [C]
                                                               !  [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysCoolOutHumRatSeq ! daily sequence of system cooling outside humidity ratios
                                                               !  [kg water/kg dry air] [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysHeatOutTempSeq   ! daily sequence of system heating outside temperatures [C]
                                                               !  [zone time step]
  REAL(r64), ALLOCATABLE, DIMENSION(:)  :: SysHeatOutHumRatSeq ! daily sequence of system heating outside humidity ratios
                                                               !   [kg water/kg dry air] [zone time step]
  INTEGER               :: SystemOAMethod           = 0        ! System Outdoor Air Method; 1 = SOAM_ZoneSum, 2 = SOAM_VRP
  REAL(r64)             :: MaxZoneOAFraction        = 0.0d0    ! maximum value of min OA for zones served by system
  REAL(r64)             :: SysUncOA                 = 0.0d0    ! uncorrected system outdoor air flow based on zone people and
                                                               ! zone area
  LOGICAL               :: OAAutosized              = .FALSE.  ! Set to true if design OA vol flow is set to 'autosize'
                                                               ! in Sizing:System
END TYPE SystemSizingData

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