From fe5e19d905e10d2f342a85e7178276c9e82178f3 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Fri, 17 May 2024 12:28:00 -0700 Subject: [PATCH 01/15] NFP and inital changes for Chiller:Electric:EIR. --- .../NFP_VariableCondenserFlowRequest.md | 129 ++++++++++++++++ idd/Energy+.idd.in | 47 +++++- src/EnergyPlus/ChillerElectricEIR.cc | 145 ++++++++++++++++-- src/EnergyPlus/ChillerElectricEIR.hh | 11 +- src/EnergyPlus/Plant/Enums.hh | 13 ++ 5 files changed, 324 insertions(+), 21 deletions(-) create mode 100644 design/FY2024/NFP_VariableCondenserFlowRequest.md diff --git a/design/FY2024/NFP_VariableCondenserFlowRequest.md b/design/FY2024/NFP_VariableCondenserFlowRequest.md new file mode 100644 index 00000000000..a32c57a27aa --- /dev/null +++ b/design/FY2024/NFP_VariableCondenserFlowRequest.md @@ -0,0 +1,129 @@ +Variable Condenser Flow Request +================================= + +**Jeremy Lerond, Pacific Northwest National Laboratory** + + +## Justification for New Feature ## + +Issue [#7111](https://github.com/NREL/EnergyPlus/issues/7111) +- "User file with Chiller:Electric:EIR always requests full condenser flow rate" +- "This is a problem not only when using cooling towers, but also when using seawater cooling by PlantComponent:TemperatureSource. Unlike cooling towers, it is not possible to make a compromise of variable tower fans instead of variable condenser water." + +## E-mail and Conference Call Conclusions ## + +Notes from the 5/15/2024 technicalities call: +- TRANE trace scales the condenser flow request based on the chiller PLR +- The new chiller input is different than the existing chiller flow mode input (evaporator side) +- Implement the new inputs and logic for both the `Chiller:Electric:EIR` and `Chiller:Electric:ReformulatedEIR` + +## Overview ## + +Chilled water plant designs can include variable flow condenser requests from chillers. Currently, the `Chiller:Electric:EIR` and `Chiller:Electric:ReformulatedEIR` objects request the maximum condenser flow rate every time a chiller is active. This new feature will implement new control strategies to allow users to model variable flow condenser requests from chillers. + +## Approach ## + +Three new control approaches will be implemented: +1. When used in conjunction with a cooling tower, users will be able to use the approach from the _Fundamentals of Design and Control of Central Chilled-Water Plants_ which correlates the condenser water flow ratio to the chilled water plant's PLR as follows: `CWFR = C . PLR + D`, where `CWFR` is the condenser water flow ration (actual/design), `C` and `D` are user specified coefficients (for proposed values see _Optimizing Design & Control Of Chilled Water Plants, Part 5_, S. Taylor, ASHRAE Journal June 2012) and `PLR` is the chilled water plant loop part load ratio (actual/design). The condenser loop flow would be calculated as `m_dot_CW = CWFR * m_dot_CW_design`. Because the request comes from the chillers, the chiller request will be determined as follows: `m_dot_CW_chiller = m_dot_CW * Q_chiller / Q_CHW`. Where `Q_chiller` is the chiller load and `Q_CHW` is the chilled water loop load. So if a chilled water plant loop has two chillers, then `Q_CHW = Q_chiller_1 + Q_chiller_2`. +2. When no cooling tower are used, users will be able to specify that the condenser water flow request will be determined as follows: `m_dot_CW_chiuller = Q_condenser / (C_p .dT)` where dT is the delta T across the condenser. +3. A simplified approach to 1. will also be implemented which will set the request condenser flow rate for each chiller to be `m_dot_CW_chiller = PLR_chiller * m_dot_max_condenser_chiller`. + +## Testing/Validation/Data Sources ## + +Unit tests will be added to confirm the correct implementation of these control strategies. + +## Input Output Reference Documentation ## + +A description of the new field will be added to the input output reference manual. + +## Input Description ## + +``` +Chiller:Electric:EIR, +\min-fields 23 + \memo This chiller model is the empirical model from the DOE-2 building Energy + \memo simulation program. Chiller performance at off-reference conditions is modeled + \memo using three polynomial equations. Three curves objects are required. +[...] +A16, \field End-Use Subcategory + \note Any text may be used here to categorize the end-uses in the ABUPS End Uses by Subcategory table. + \type alpha + \retaincase + \default General +A17, \field Condenser Flow Control + \note Select the chiller condenser flow request mode. With "ConstantFlow" a chiller will always request + \note its maximum condenser flow rate. With "ModulatedChillerPLR" the condenser flow request corresponds + \note to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With + \note "ModulatedLoopPLR" the chiller will request a flow rate that is function of the chilled water + \note loop's part load ratio, see the "Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio + \note Curve Name" input. With "ModulatedDeltaTemperature" the chiller will request the flow rate required + \note to meet a condenser loop delta temperature, see the "Temperature Difference Across Condenser" and + \note "Temperature Difference Across Condenser Schedule Name" input. + \note Use "ConstantFlow" when modeling a constant flow condenser plant loop, choose one of the other inputs + \note when modeling a variable flow condenser plant loop. + \key ConstantFlow + \key ModulatedChillerPLR + \key ModulatedLoopPLR + \key ModulatedDeltaTemperature + \default ConstantFlow +A18, \field Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name + \note Condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear + \note curve is expected. + \note CWFR = C * PLR + D + \note Where: + \note CWFR is the condenser water flow fraction (actual/design) + \note C and D are coefficients, see "Optimizing Design & Control Of Chilled Water Plants, Part 5", + \note S. Taylor, ASHRAE Journal June 2012 PLR is the chilled water plant loop part load ratio + \note (actual/design). This input is only used when the "ModulatedLoopPLR" condenser flow control + \note option is used. + \type object-list + \object-list UnivariateFunctions +N19, \field Temperature Difference Across Condenser + \type real + \units C + \minimum 2.0 + \default 15.0 + \note The temperature difference across the condenser. This input is used to calculate the condenser flow + \note request.This input is only used when "Condenser Flow Control" is set to "ModulatedDeltaTemperature". +A20, \field Temperature Difference Across Condenser Schedule Name + \note A schedule that defines the temperature difference across the condenser. This input is used to + \note calculate the condenser flow. This input is only used when "Condenser Flow Control" is set to + \note "ModulatedDeltaTemperature". + \type object-list + \object-list ScheduleNames +N20; \field Condenser Minimum Flow Fraction + \note This input corresponds to the minimum flow fraction to be simulated. The minimum condenser flow + \note corresponds to this fraction multiplied by the maximum condenser flow rate. This input is only used + \note when the "Condenser Flow Control" input is set to "ModulatedChillerPLR", "ModulatedLoopPLR" or + \note "ModulatedDeltaTemperature". + \type real + \minimum 0.0 + \maximum 1.0 + \default 0.2 +``` + +Similar input will be implemented for the `Chiller:Electric:ReformulatedEIR` object. + +## Outputs Description ## + +No new output will be added. + +## Engineering Reference ## + +A new section will be added to the Chiller section of the Engineering Reference to provide details on the control approach as shown in the Approach section of this document. + +A note will be added indicating that chiller performance will be only impacted when simulating a `Chiller:Electric:ReformulatedEIR` since this chiller object has its part load performance impacted by the leaving chiller condenser temperature. + +## Example File and Transition Changes ## + +No transition will be necessary. + +New example files will be provided to showcase the new feature. + +## References ## + +- "Optimizing Design & Control Of Chilled Water Plants, Part 2", S. Taylor, ASHRAE Journal Sept 2011 +- "Optimizing Design & Control Of Chilled Water Plants, Part 5", S. Taylor, ASHRAE Journal June 2012 +- "Optimizing Chilled Water Plan Control", M. Hydeman, ASHRAE Journal June 2007 +- "Carrier® ChillerVu™ Variable Flow Condenser Pump Application Guide", https://www.shareddocs.com/hvac/docs/1000/Public/0A/11-808-577-01.pdf +- "Achieving Variable Condenser Water Flow with VFDs" https://www.esmagazine.com/articles/99689-achieving-variable-condenser-water-flow-with-vfds \ No newline at end of file diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 60c2f9015ba..80e6754eb4b 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -73352,11 +73352,56 @@ Chiller:Electric:EIR, \note Using this triggers a model more suited to series bundle and chillers with higher temperature heat recovery \note If this field is not used, the bundles are modeled as being in parallel \type node - A16; \field End-Use Subcategory + A16, \field End-Use Subcategory \note Any text may be used here to categorize the end-uses in the ABUPS End Uses by Subcategory table. \type alpha \retaincase \default General + A17, \field Condenser Flow Control + \note Select the chiller condenser flow request mode. With "ConstantFlow" a chiller will always request + \note its maximum condenser flow rate. With "ModulatedChillerPLR" the condenser flow request corresponds + \note to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With + \note "ModulatedLoopPLR" the chiller will request a flow rate that is function of the chilled water + \note loop's part load ratio, see the "Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio + \note Curve Name" input. With "ModulatedDeltaTemperature" the chiller will request the flow rate required to meet + \note the condenser loop load based on the condenser leaving fluid temperature and a reference temperature, + \note see the "Temperature Difference Across Condenser" and "Temperature Difference Across Condenser Schedule + \note Name" input. + \note Use "ConstantFlow" when modeling a constant flow condenser plant loop, choose one of the other inputs + \note when modeling a variable flow condenser plant loop. + \key ConstantFlow + \key ModulatedChillerPLR + \key ModulatedLoopPLR + \key ModulatedDeltaTemperature + \default ConstantFlow + A18, \field Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name + \note Condenser loop flow rate fraction as a function of loop part load ratio + \note CWFR = C * PLR + D + \note Where: + \note CWFR is the condenser water flow fraction (actual/design) + \note C and D are coefficients, see "Optimizing Design & Control Of Chilled Water Plants, Part 5", S. Taylor, ASHRAE Journal June 2012 + \note PLR is the chilled water plant loop part load ratio (actual/design) + \type object-list + \object-list UnivariateFunctions + N19, \field Temperature Difference Across Condenser + \type real + \units C + \minimum 2.0 + \default 15.0 + \note The temperature difference across the condenser. This input is used to calculate the condenser flow + \note request.This input is only used when "Condenser Flow Control" is set to + \note "ModulatedDeltaTemperature". + A20, \field Temperature Difference Across Condenser Schedule Name + \note A schedule that defines the temperature difference across the condenser. This input is used to + \note calculate the condenser flow. This input is only used when "Condenser Flow Control" is set to + \note "ModulatedDeltaTemperature". + \type object-list + \object-list ScheduleNames + N20; \field Condenser Minimum Flow Fraction + \note This input corresponds to the minimum flow fraction to be simulated. The minimum condenser flow + \note corresponds to this fraction multiplied by the maximum condenser flow rate. This input is only used + \note when the "Condenser Flow Control" input is set to "ModulatedChillerPLR", "ModulatedLoopPLR" or + \note "ModulatedDeltaTemperature". Chiller:Electric:ReformulatedEIR, \min-fields 22 diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 27fa9ac2ef6..fcfc54759b9 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -655,6 +655,64 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) } } + if (NumAlphas > 16) { + thisChiller.CondenserFlowControl = static_cast( + getEnumValue(DataPlant::CondenserFlowControlNamesUC, state.dataIPShortCut->cAlphaArgs(17))); + } else { + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + } + + if (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::Invalid) { + ShowSevereError(state, + format("{}{}=\"{}\",", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(10), state.dataIPShortCut->cAlphaArgs(10))); + ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); + ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + }; + + if (NumAlphas > 17) { + thisChiller.ChillerCondLoopFlowFLoopPLRIndex = Curve::GetCurveIndex(state, state.dataIPShortCut->cAlphaArgs(18)); + } else { + thisChiller.ChillerCondLoopFlowFLoopPLRIndex = 0; + } + if ((thisChiller.ChillerCondLoopFlowFLoopPLRIndex == 0) && + (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedLoopPLR)) { + ShowSevereError(state, + format("{}{} \"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(18), state.dataIPShortCut->cAlphaArgs(18))); + ErrorsFound = true; + } + + if (NumNums > 18) { + thisChiller.CondDT = state.dataIPShortCut->rNumericArgs(19); + } else { + thisChiller.CondDT = 0.0; + } + + if (NumAlphas > 18) { + if (!state.dataIPShortCut->lAlphaFieldBlanks(19)) { + thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(19)); + if (thisChiller.CondDTScheduleNum == 0) { + ShowSevereError( + state, format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, + format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(19), state.dataIPShortCut->cAlphaArgs(19))); + ErrorsFound = true; + } + } else { + thisChiller.CondDTScheduleNum = 0; + } + } else { + thisChiller.CondDTScheduleNum = 0; + } + + if (NumNums > 19) { + thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(20); + } else { + thisChiller.MinCondFlowRatio = 0.2; + } + // Check the CAP-FT, EIR-FT, and PLR curves and warn user if different from 1.0 by more than +-10% if (thisChiller.ChillerCapFTIndex > 0) { Real64 CurveVal = Curve::CurveValue(state, thisChiller.ChillerCapFTIndex, thisChiller.TempRefEvapOut, thisChiller.TempRefCondIn); @@ -1891,23 +1949,6 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b ReferenceCOP = ReferenceCOP_ff * this->FaultyChillerFoulingFactor; } - // Set mass flow rates - if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { - this->CondMassFlowRate = this->CondMassFlowRateMax; - PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); - PlantUtilities::PullCompInterconnectTrigger( - state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); - - if (this->CondMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { - if (this->EvapMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { - // Use PlantUtilities::SetComponentFlowRate to decide actual flow - PlantUtilities::SetComponentFlowRate( - state, this->EvapMassFlowRate, this->EvapInletNodeNum, this->EvapOutletNodeNum, this->CWPlantLoc); - } - return; - } - } - switch (state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).LoopDemandCalcScheme) { case DataPlant::LoopDemandCalcScheme::SingleSetPoint: { if ((this->FlowMode == DataPlant::FlowMode::LeavingSetpointModulated) || @@ -2298,6 +2339,76 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b this->QCondenser = this->Power * this->CompPowerToCondenserFrac + this->QEvaporator + this->ChillerFalseLoadRate; + // set condenser mass flow rate + if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { + switch (this->CondenserFlowControl) { + case DataPlant::CondenserFlowControl::ConstantFlow: { + this->CondMassFlowRate = this->CondMassFlowRateMax; + } break; + case DataPlant::CondenserFlowControl::ModulatedChillerPLR: { + this->CondMassFlowRate = this->CondMassFlowRateMax * PartLoadRat; + } break; + case DataPlant::CondenserFlowControl::ModulatedLoopPLR: { + int PltSizNum = state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).PlantSizNum; + int CondPltSizNum = state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).PlantSizNum; + Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, + Constant::CWInitConvTemp, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, + RoutineName); + Real64 rho = FluidProperties::GetDensityGlycol(state, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, + Constant::CWInitConvTemp, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, + RoutineName); + Real64 chwLoopCap = Cp * rho * state.dataSize->PlantSizData(PltSizNum).DeltaT * state.dataSize->PlantSizData(PltSizNum).DesVolFlowRate; + Real64 chwLoopDemand = state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).CoolingDemand; + Real64 cwhLoopPLR = 0.0; + if (chwLoopDemand > 0) { + cwhLoopPLR = chwLoopDemand / chwLoopCap; + } + Real64 condWaterFlowFrac = Curve::CurveValue(state, this->ChillerCondLoopFlowFLoopPLRIndex, cwhLoopPLR); + Real64 cwLoopDesVolFlowRate = state.dataSize->PlantSizData(CondPltSizNum).DesVolFlowRate; + Real64 cwLoopVolFlowRate = condWaterFlowFrac * cwLoopDesVolFlowRate; + if (chwLoopDemand > 0) { + this->CondMassFlowRate = cwLoopVolFlowRate * rho * this->QEvaporator / chwLoopDemand; + } else { + this->CondMassFlowRate = 0.0; + } + } break; + case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { + Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, + Constant::CWInitConvTemp, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, + RoutineName); + Real64 condDT = 0.0; + if (this->CondDTScheduleNum > 0) { + condDT = ScheduleManager::GetCurrentScheduleValue(state, this->CondDTScheduleNum); + } else { + condDT = this->CondDT; + } + this->CondMassFlowRate = this->QCondenser / (Cp * condDT); + } break; + default: { + this->CondMassFlowRate = this->CondMassFlowRateMax; + } break; + } + this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), this->MinCondFlowRatio * this->CondMassFlowRateMax); + PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); + PlantUtilities::PullCompInterconnectTrigger( + state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); + + if (this->CondMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { + if (this->EvapMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { + // Use PlantUtilities::SetComponentFlowRate to decide actual flow + PlantUtilities::SetComponentFlowRate( + state, this->EvapMassFlowRate, this->EvapInletNodeNum, this->EvapOutletNodeNum, this->CWPlantLoc); + } + return; + } + } + if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { if (this->CondMassFlowRate > DataBranchAirLoopPlant::MassFlowTolerance) { // If Heat Recovery specified for this vapor compression chiller, then Qcondenser will be adjusted by this subroutine diff --git a/src/EnergyPlus/ChillerElectricEIR.hh b/src/EnergyPlus/ChillerElectricEIR.hh index 510e0a6336e..f0cdb748e18 100644 --- a/src/EnergyPlus/ChillerElectricEIR.hh +++ b/src/EnergyPlus/ChillerElectricEIR.hh @@ -75,9 +75,10 @@ namespace ChillerElectricEIR { bool RefCapWasAutoSized = false; // reference capacity was autosized on input Real64 RefCOP = 0.0; // Reference coefficient of performance [W/W] DataPlant::FlowMode FlowMode = DataPlant::FlowMode::Invalid; // one of 3 modes for component flow during operation - bool ModulatedFlowSetToLoop = false; // True if the setpoint is missing at the outlet node - bool ModulatedFlowErrDone = false; // true if setpoint warning issued - bool HRSPErrDone = false; // TRUE if set point warning issued for heat recovery loop + DataPlant::CondenserFlowControl CondenserFlowControl = DataPlant::CondenserFlowControl::Invalid; + bool ModulatedFlowSetToLoop = false; // True if the setpoint is missing at the outlet node + bool ModulatedFlowErrDone = false; // true if setpoint warning issued + bool HRSPErrDone = false; // TRUE if set point warning issued for heat recovery loop Real64 EvapVolFlowRate = 0.0; // Reference water volumetric flow rate through the evaporator [m3/s] bool EvapVolFlowRateWasAutoSized = false; // true if previous was autosize input Real64 EvapMassFlowRate = 0.0; @@ -187,6 +188,10 @@ namespace ChillerElectricEIR { Real64 CondenserFanEnergyConsumption = 0.0; // reporting: Air-cooled condenser fan energy [J] Real64 BasinHeaterConsumption = 0.0; // Basin heater energy consumption (J) bool IPLVFlag = true; + int ChillerCondLoopFlowFLoopPLRIndex = 0; // Condenser loop flow rate fraction function of loop PLR + int CondDT = 0; // Temperature difference across condenser + int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index + Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; static ElectricEIRChillerSpecs *factory(EnergyPlusData &state, std::string const &objectName); diff --git a/src/EnergyPlus/Plant/Enums.hh b/src/EnergyPlus/Plant/Enums.hh index 7a04605d850..a8ef2ea229f 100644 --- a/src/EnergyPlus/Plant/Enums.hh +++ b/src/EnergyPlus/Plant/Enums.hh @@ -250,6 +250,19 @@ enum class FlowMode constexpr std::array(FlowMode::Num)> FlowModeNamesUC{ "CONSTANTFLOW", "NOTMODULATED", "LEAVINGSETPOINTMODULATED", "VARIABLESPEEDPUMPING"}; +enum class CondenserFlowControl +{ + Invalid = -1, + ConstantFlow, + ModulatedChillerPLR, + ModulatedLoopPLR, + ModulatedDeltaTemperature, + Num +}; + +constexpr std::array(CondenserFlowControl::Num)> CondenserFlowControlNamesUC{ + "CONSTANTFLOW", "MODULATEDCHILLERPLR", "MODULATEDLOOPPLR", "MODULATEDDELTATEMPERATURE"}; + enum class CondenserType { Invalid = -1, From 0105b46e09418ed2748a469018ef378fa1ef0859 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Fri, 31 May 2024 16:03:05 -0700 Subject: [PATCH 02/15] Correct calcs, address inconsistencies, and add new EIO info. --- src/EnergyPlus/ChillerElectricEIR.cc | 62 ++++++++++++++++++---------- src/EnergyPlus/Plant/PlantManager.cc | 3 ++ 2 files changed, 44 insertions(+), 21 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index fcfc54759b9..8c3021f63ec 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -669,6 +669,7 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + ErrorsFound = true; }; if (NumAlphas > 17) { @@ -1949,6 +1950,23 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b ReferenceCOP = ReferenceCOP_ff * this->FaultyChillerFoulingFactor; } + // Set initial mass flow rates + if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { + this->CondMassFlowRate = this->CondMassFlowRateMax; + PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); + PlantUtilities::PullCompInterconnectTrigger( + state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); + + if (this->CondMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { + if (this->EvapMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { + // Use PlantUtilities::SetComponentFlowRate to decide actual flow + PlantUtilities::SetComponentFlowRate( + state, this->EvapMassFlowRate, this->EvapInletNodeNum, this->EvapOutletNodeNum, this->CWPlantLoc); + } + return; + } + } + switch (state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).LoopDemandCalcScheme) { case DataPlant::LoopDemandCalcScheme::SingleSetPoint: { if ((this->FlowMode == DataPlant::FlowMode::LeavingSetpointModulated) || @@ -2351,29 +2369,31 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b case DataPlant::CondenserFlowControl::ModulatedLoopPLR: { int PltSizNum = state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).PlantSizNum; int CondPltSizNum = state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).PlantSizNum; - Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, - state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, - state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, + if (PltSizNum > 0 && CondPltSizNum > 0) { + Real64 chwLoopCap = state.dataSize->PlantSizData(PltSizNum).DesCapacity; + Real64 chwLoopDemand = + std::abs(state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).LoopSide(this->CWPlantLoc.loopSideNum).UpdatedDemandToLoopSetPoint); + Real64 cwhLoopPLR = 0.0; + if (chwLoopDemand > 0) { + cwhLoopPLR = chwLoopDemand / chwLoopCap; + } + Real64 condWaterFlowFrac = Curve::CurveValue(state, this->ChillerCondLoopFlowFLoopPLRIndex, cwhLoopPLR); + Real64 cwLoopDesVolFlowRate = state.dataSize->PlantSizData(CondPltSizNum).DesVolFlowRate; + Real64 cwLoopVolFlowRate = condWaterFlowFrac * cwLoopDesVolFlowRate; + Real64 rho = FluidProperties::GetDensityGlycol(state, + state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, + this->TempRefCondIn, + state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); - Real64 rho = FluidProperties::GetDensityGlycol(state, - state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, - state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, - RoutineName); - Real64 chwLoopCap = Cp * rho * state.dataSize->PlantSizData(PltSizNum).DeltaT * state.dataSize->PlantSizData(PltSizNum).DesVolFlowRate; - Real64 chwLoopDemand = state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).CoolingDemand; - Real64 cwhLoopPLR = 0.0; - if (chwLoopDemand > 0) { - cwhLoopPLR = chwLoopDemand / chwLoopCap; - } - Real64 condWaterFlowFrac = Curve::CurveValue(state, this->ChillerCondLoopFlowFLoopPLRIndex, cwhLoopPLR); - Real64 cwLoopDesVolFlowRate = state.dataSize->PlantSizData(CondPltSizNum).DesVolFlowRate; - Real64 cwLoopVolFlowRate = condWaterFlowFrac * cwLoopDesVolFlowRate; - if (chwLoopDemand > 0) { - this->CondMassFlowRate = cwLoopVolFlowRate * rho * this->QEvaporator / chwLoopDemand; + if (chwLoopDemand > 0) { + this->CondMassFlowRate = cwLoopVolFlowRate * rho * this->QEvaporator / chwLoopDemand; + } else { + this->CondMassFlowRate = 0.0; + } } else { - this->CondMassFlowRate = 0.0; + ShowFatalError(state, + format("CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " + "both loops connected to the condenser and evaporator of the chiller.")); } } break; case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { diff --git a/src/EnergyPlus/Plant/PlantManager.cc b/src/EnergyPlus/Plant/PlantManager.cc index f93ab18502e..971967f2d99 100644 --- a/src/EnergyPlus/Plant/PlantManager.cc +++ b/src/EnergyPlus/Plant/PlantManager.cc @@ -3266,6 +3266,9 @@ void SizePlantLoop(EnergyPlusData &state, Real64 DesignPlantCapacity = cp * FluidDensity * state.dataSize->PlantSizData(PlantSizNum).DesVolFlowRate * state.dataSize->PlantSizData(PlantSizNum).DeltaT; state.dataSize->PlantSizData(PlantSizNum).DesCapacity = DesignPlantCapacity; // store it for later use in scaling + if (state.dataPlnt->PlantFinalSizesOkayToReport) { + BaseSizer::reportSizerOutput(state, "PlantLoop", state.dataPlnt->PlantLoop(LoopNum).Name, "Design Capacity [W]", DesignPlantCapacity); + } } } else if (state.dataPlnt->PlantLoop(LoopNum).FluidType == DataLoopNode::NodeFluidType::Steam) { FluidDensity = GetSatDensityRefrig(state, fluidNameSteam, 100.0, 1.0, state.dataPlnt->PlantLoop(LoopNum).FluidIndex, RoutineName); From eddc95dd52787d07239eb2a93a99cb0975df4484 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Fri, 31 May 2024 16:07:50 -0700 Subject: [PATCH 03/15] Remove unecessary `format()`... --- src/EnergyPlus/ChillerElectricEIR.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 8c3021f63ec..eeff28236e8 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -2392,8 +2392,8 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b } } else { ShowFatalError(state, - format("CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " - "both loops connected to the condenser and evaporator of the chiller.")); + "CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " + "both loops connected to the condenser and evaporator of the chiller."); } } break; case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { From 426036c470857fa65446ceb966115754189e2a8f Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Sun, 2 Jun 2024 16:37:06 -0700 Subject: [PATCH 04/15] Apply changes to ReformulatedEIR chiller and remove dedicated input for dT. --- idd/Energy+.idd.in | 49 ++++++++-- src/EnergyPlus/ChillerElectricEIR.cc | 17 +--- src/EnergyPlus/ChillerReformulatedEIR.cc | 119 ++++++++++++++++++++++- src/EnergyPlus/ChillerReformulatedEIR.hh | 85 ++++++++-------- 4 files changed, 202 insertions(+), 68 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 40ed2734609..675848cbd24 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -73383,21 +73383,13 @@ Chiller:Electric:EIR, \note PLR is the chilled water plant loop part load ratio (actual/design) \type object-list \object-list UnivariateFunctions - N19, \field Temperature Difference Across Condenser - \type real - \units C - \minimum 2.0 - \default 15.0 - \note The temperature difference across the condenser. This input is used to calculate the condenser flow - \note request.This input is only used when "Condenser Flow Control" is set to - \note "ModulatedDeltaTemperature". A20, \field Temperature Difference Across Condenser Schedule Name \note A schedule that defines the temperature difference across the condenser. This input is used to \note calculate the condenser flow. This input is only used when "Condenser Flow Control" is set to \note "ModulatedDeltaTemperature". \type object-list \object-list ScheduleNames - N20; \field Condenser Minimum Flow Fraction + N19; \field Condenser Minimum Flow Fraction \note This input corresponds to the minimum flow fraction to be simulated. The minimum condenser flow \note corresponds to this fraction multiplied by the maximum condenser flow rate. This input is only used \note when the "Condenser Flow Control" input is set to "ModulatedChillerPLR", "ModulatedLoopPLR" or @@ -73595,11 +73587,48 @@ Chiller:Electric:ReformulatedEIR, \note Using this triggers a model more suited to series bundle and chillers with higher temperature heat recovery \note If this field is not used, the bundles are modeled as being in parallel \type node - A15; \field End-Use Subcategory + A15, \field End-Use Subcategory \note Any text may be used here to categorize the end-uses in the ABUPS End Uses by Subcategory table. \type alpha \retaincase \default General + A16, \field Condenser Flow Control + \note Select the chiller condenser flow request mode. With "ConstantFlow" a chiller will always request + \note its maximum condenser flow rate. With "ModulatedChillerPLR" the condenser flow request corresponds + \note to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With + \note "ModulatedLoopPLR" the chiller will request a flow rate that is function of the chilled water + \note loop's part load ratio, see the "Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio + \note Curve Name" input. With "ModulatedDeltaTemperature" the chiller will request the flow rate required to meet + \note the condenser loop load based on the condenser leaving fluid temperature and a reference temperature, + \note see the "Temperature Difference Across Condenser" and "Temperature Difference Across Condenser Schedule + \note Name" input. + \note Use "ConstantFlow" when modeling a constant flow condenser plant loop, choose one of the other inputs + \note when modeling a variable flow condenser plant loop. + \key ConstantFlow + \key ModulatedChillerPLR + \key ModulatedLoopPLR + \key ModulatedDeltaTemperature + \default ConstantFlow + A17, \field Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name + \note Condenser loop flow rate fraction as a function of loop part load ratio + \note CWFR = C * PLR + D + \note Where: + \note CWFR is the condenser water flow fraction (actual/design) + \note C and D are coefficients, see "Optimizing Design & Control Of Chilled Water Plants, Part 5", S. Taylor, ASHRAE Journal June 2012 + \note PLR is the chilled water plant loop part load ratio (actual/design) + \type object-list + \object-list UnivariateFunctions + A19, \field Temperature Difference Across Condenser Schedule Name + \note A schedule that defines the temperature difference across the condenser. This input is used to + \note calculate the condenser flow. This input is only used when "Condenser Flow Control" is set to + \note "ModulatedDeltaTemperature". + \type object-list + \object-list ScheduleNames + N16; \field Condenser Minimum Flow Fraction + \note This input corresponds to the minimum flow fraction to be simulated. The minimum condenser flow + \note corresponds to this fraction multiplied by the maximum condenser flow rate. This input is only used + \note when the "Condenser Flow Control" input is set to "ModulatedChillerPLR", "ModulatedLoopPLR" or + \note "ModulatedDeltaTemperature". Chiller:Electric, \min-fields 27 diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index eeff28236e8..cf16511ce69 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -665,7 +665,7 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) if (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::Invalid) { ShowSevereError(state, format("{}{}=\"{}\",", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); - ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(10), state.dataIPShortCut->cAlphaArgs(10))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(17), state.dataIPShortCut->cAlphaArgs(17))); ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; @@ -685,12 +685,6 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) ErrorsFound = true; } - if (NumNums > 18) { - thisChiller.CondDT = state.dataIPShortCut->rNumericArgs(19); - } else { - thisChiller.CondDT = 0.0; - } - if (NumAlphas > 18) { if (!state.dataIPShortCut->lAlphaFieldBlanks(19)) { thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(19)); @@ -2418,15 +2412,6 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); PlantUtilities::PullCompInterconnectTrigger( state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); - - if (this->CondMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { - if (this->EvapMassFlowRate < DataBranchAirLoopPlant::MassFlowTolerance) { - // Use PlantUtilities::SetComponentFlowRate to decide actual flow - PlantUtilities::SetComponentFlowRate( - state, this->EvapMassFlowRate, this->EvapInletNodeNum, this->EvapOutletNodeNum, this->CWPlantLoc); - } - return; - } } if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index 703882e2769..104056f986a 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -628,6 +628,59 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) } else { thisChiller.EndUseSubcategory = "General"; } + + if (NumAlphas > 15) { + thisChiller.CondenserFlowControl = static_cast( + getEnumValue(DataPlant::CondenserFlowControlNamesUC, state.dataIPShortCut->cAlphaArgs(16))); + } else { + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + } + + if (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::Invalid) { + ShowSevereError(state, + format("{}{}=\"{}\",", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(16), state.dataIPShortCut->cAlphaArgs(16))); + ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); + ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + ErrorsFound = true; + }; + + if (NumAlphas > 16) { + thisChiller.ChillerCondLoopFlowFLoopPLRIndex = Curve::GetCurveIndex(state, state.dataIPShortCut->cAlphaArgs(17)); + } else { + thisChiller.ChillerCondLoopFlowFLoopPLRIndex = 0; + } + if ((thisChiller.ChillerCondLoopFlowFLoopPLRIndex == 0) && + (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedLoopPLR)) { + ShowSevereError(state, + format("{}{} \"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(17), state.dataIPShortCut->cAlphaArgs(17))); + ErrorsFound = true; + } + + if (NumAlphas > 17) { + if (!state.dataIPShortCut->lAlphaFieldBlanks(18)) { + thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(18)); + if (thisChiller.CondDTScheduleNum == 0) { + ShowSevereError( + state, format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, + format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(18), state.dataIPShortCut->cAlphaArgs(18))); + ErrorsFound = true; + } + } else { + thisChiller.CondDTScheduleNum = 0; + } + } else { + thisChiller.CondDTScheduleNum = 0; + } + + if (NumNums > 16) { + thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(17); + } else { + thisChiller.MinCondFlowRatio = 0.2; + } } if (ErrorsFound) { @@ -2076,8 +2129,7 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa ReferenceCOP = ReferenceCOP_ff * this->FaultyChillerFoulingFactor; } - // Set mass flow rates - + // Set initial mass flow rates if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { this->CondMassFlowRate = this->CondMassFlowRateMax; PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); @@ -2439,6 +2491,69 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa this->QCondenser = this->Power * this->CompPowerToCondenserFrac + this->QEvaporator + this->ChillerFalseLoadRate; + // set condenser mass flow rate + if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { + switch (this->CondenserFlowControl) { + case DataPlant::CondenserFlowControl::ConstantFlow: { + this->CondMassFlowRate = this->CondMassFlowRateMax; + } break; + case DataPlant::CondenserFlowControl::ModulatedChillerPLR: { + this->CondMassFlowRate = this->CondMassFlowRateMax * PartLoadRat; + } break; + case DataPlant::CondenserFlowControl::ModulatedLoopPLR: { + int PltSizNum = state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).PlantSizNum; + int CondPltSizNum = state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).PlantSizNum; + if (PltSizNum > 0 && CondPltSizNum > 0) { + Real64 chwLoopCap = state.dataSize->PlantSizData(PltSizNum).DesCapacity; + Real64 chwLoopDemand = + std::abs(state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).LoopSide(this->CWPlantLoc.loopSideNum).UpdatedDemandToLoopSetPoint); + Real64 cwhLoopPLR = 0.0; + if (chwLoopDemand > 0) { + cwhLoopPLR = chwLoopDemand / chwLoopCap; + } + Real64 condWaterFlowFrac = Curve::CurveValue(state, this->ChillerCondLoopFlowFLoopPLRIndex, cwhLoopPLR); + Real64 cwLoopDesVolFlowRate = state.dataSize->PlantSizData(CondPltSizNum).DesVolFlowRate; + Real64 cwLoopVolFlowRate = condWaterFlowFrac * cwLoopDesVolFlowRate; + Real64 rho = FluidProperties::GetDensityGlycol(state, + state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, + this->TempRefCondIn, + state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, + RoutineName); + if (chwLoopDemand > 0) { + this->CondMassFlowRate = cwLoopVolFlowRate * rho * this->QEvaporator / chwLoopDemand; + } else { + this->CondMassFlowRate = 0.0; + } + } else { + ShowFatalError(state, + "CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " + "both loops connected to the condenser and evaporator of the chiller."); + } + } break; + case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { + Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, + Constant::CWInitConvTemp, + state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, + RoutineName); + Real64 condDT = 0.0; + if (this->CondDTScheduleNum > 0) { + condDT = ScheduleManager::GetCurrentScheduleValue(state, this->CondDTScheduleNum); + } else { + condDT = this->CondDT; + } + this->CondMassFlowRate = this->QCondenser / (Cp * condDT); + } break; + default: { + this->CondMassFlowRate = this->CondMassFlowRateMax; + } break; + } + this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), this->MinCondFlowRatio * this->CondMassFlowRateMax); + PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); + PlantUtilities::PullCompInterconnectTrigger( + state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); + } + // Currently only water cooled chillers are allowed for the reformulated EIR chiller model if (this->CondMassFlowRate > DataBranchAirLoopPlant::MassFlowTolerance) { // If Heat Recovery specified for this vapor compression chiller, then Qcondenser will be adjusted by this subroutine diff --git a/src/EnergyPlus/ChillerReformulatedEIR.hh b/src/EnergyPlus/ChillerReformulatedEIR.hh index 050c0f60a8e..20a6b5f2212 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.hh +++ b/src/EnergyPlus/ChillerReformulatedEIR.hh @@ -82,30 +82,31 @@ namespace ChillerReformulatedEIR { std::string EIRFTName; // EIRFT curve name std::string EIRFPLRName; // EIRPLR curve name DataPlant::CondenserType CondenserType = - DataPlant::CondenserType::Invalid; // Type of Condenser. Water Cooled is the only available option for now - PLR PartLoadCurveType = PLR::Invalid; // Part Load Ratio Curve Type: 1_LeavingCondenserWaterTemperature; 2_Lift - Real64 RefCap = 0.0; // Reference capacity of the chiller [W] - bool RefCapWasAutoSized = false; // reference capacity was autosized on input - Real64 RefCOP = 0.0; // Reference coefficient of performance [W/W] - DataPlant::FlowMode FlowMode = DataPlant::FlowMode::Invalid; // one of 3 modes for component flow during operation - bool ModulatedFlowSetToLoop = false; // True if the setpoint is missing at the outlet node - bool ModulatedFlowErrDone = false; // true if setpoint warning issued - Real64 EvapVolFlowRate = 0.0; // Reference water volumetric flow rate through the evaporator [m3/s] - bool EvapVolFlowRateWasAutoSized = false; // true if previous was autosize input - Real64 EvapMassFlowRateMax = 0.0; // Reference water mass flow rate through evaporator [kg/s] - Real64 CondVolFlowRate = 0.0; // Reference water volumetric flow rate through the condenser [m3/s] - bool CondVolFlowRateWasAutoSized = false; // true if previous was set to autosize on input - Real64 CondMassFlowRateMax = 0.0; // Reference water mass flow rate through condenser [kg/s] - Real64 CompPowerToCondenserFrac = 0.0; // Fraction of compressor electric power rejected by condenser [0 to 1] - int EvapInletNodeNum = 0; // Node number on the inlet side of the plant (evaporator side) - int EvapOutletNodeNum = 0; // Node number on the outlet side of the plant (evaporator side) - int CondInletNodeNum = 0; // Node number on the inlet side of the condenser - int CondOutletNodeNum = 0; // Node number on the outlet side of the condenser - Real64 MinPartLoadRat = 0.0; // Minimum allowed operating fraction of full load - Real64 MaxPartLoadRat = 0.0; // Maximum allowed operating fraction of full load - Real64 OptPartLoadRat = 0.0; // Optimal operating fraction of full load - Real64 MinUnloadRat = 0.0; // Minimum unloading ratio - Real64 TempRefCondIn = 0.0; // The reference secondary loop fluid temperature at the + DataPlant::CondenserType::Invalid; // Type of Condenser. Water Cooled is the only available option for now + PLR PartLoadCurveType = PLR::Invalid; // Part Load Ratio Curve Type: 1_LeavingCondenserWaterTemperature; 2_Lift + Real64 RefCap = 0.0; // Reference capacity of the chiller [W] + bool RefCapWasAutoSized = false; // reference capacity was autosized on input + Real64 RefCOP = 0.0; // Reference coefficient of performance [W/W] + DataPlant::FlowMode FlowMode = DataPlant::FlowMode::Invalid; + DataPlant::CondenserFlowControl CondenserFlowControl = DataPlant::CondenserFlowControl::Invalid; + bool ModulatedFlowSetToLoop = false; // True if the setpoint is missing at the outlet node + bool ModulatedFlowErrDone = false; // true if setpoint warning issued + Real64 EvapVolFlowRate = 0.0; // Reference water volumetric flow rate through the evaporator [m3/s] + bool EvapVolFlowRateWasAutoSized = false; // true if previous was autosize input + Real64 EvapMassFlowRateMax = 0.0; // Reference water mass flow rate through evaporator [kg/s] + Real64 CondVolFlowRate = 0.0; // Reference water volumetric flow rate through the condenser [m3/s] + bool CondVolFlowRateWasAutoSized = false; // true if previous was set to autosize on input + Real64 CondMassFlowRateMax = 0.0; // Reference water mass flow rate through condenser [kg/s] + Real64 CompPowerToCondenserFrac = 0.0; // Fraction of compressor electric power rejected by condenser [0 to 1] + int EvapInletNodeNum = 0; // Node number on the inlet side of the plant (evaporator side) + int EvapOutletNodeNum = 0; // Node number on the outlet side of the plant (evaporator side) + int CondInletNodeNum = 0; // Node number on the inlet side of the condenser + int CondOutletNodeNum = 0; // Node number on the outlet side of the condenser + Real64 MinPartLoadRat = 0.0; // Minimum allowed operating fraction of full load + Real64 MaxPartLoadRat = 0.0; // Maximum allowed operating fraction of full load + Real64 OptPartLoadRat = 0.0; // Optimal operating fraction of full load + Real64 MinUnloadRat = 0.0; // Minimum unloading ratio + Real64 TempRefCondIn = 0.0; // The reference secondary loop fluid temperature at the // chiller condenser side inlet for the reformulated chiller [C] Real64 TempRefCondOut = 0.0; // The reference secondary loop fluid temperature at the // chiller condenser side outlet for the reformulated chiller [C] @@ -195,22 +196,26 @@ namespace ChillerReformulatedEIR { Real64 HeatRecOutletTemp = 0.0; Real64 QHeatRecovery = 0.0; // Heat recovered from water-cooled condenser [W] Real64 QCondenser = 0.0; - Real64 QEvaporator = 0.0; // Evaporator heat transfer rate [W] - Real64 Power = 0.0; // Chiller power [W] - Real64 EvapOutletTemp = 0.0; // Evaporator outlet temperature [C] - Real64 CondOutletTemp = 0.0; // Condenser outlet temperature [C] - Real64 EvapMassFlowRate = 0.0; // Evaporator mass flow rate [kg/s] - Real64 CondMassFlowRate = 0.0; // Condenser mass flow rate [kg/s] - Real64 ChillerFalseLoad = 0.0; // Chiller false load over and above water side load [W] - Real64 Energy = 0.0; // Chiller electric consumption [J] - Real64 EvapEnergy = 0.0; // Evaporator heat transfer energy [J] - Real64 CondEnergy = 0.0; // Condenser heat transfer energy [J] - Real64 CondInletTemp = 0.0; // Condenser inlet temperature [C] - Real64 EvapInletTemp = 0.0; // Evaporator inlet temperature [C] - Real64 ActualCOP = 0.0; // Coefficient of performance - Real64 EnergyHeatRecovery = 0.0; // Energy recovered from water-cooled condenser [J] - Real64 HeatRecInletTemp = 0.0; // Heat reclaim inlet temperature [C] - Real64 HeatRecMassFlow = 0.0; // Heat reclaim mass flow rate [kg/s] + Real64 QEvaporator = 0.0; // Evaporator heat transfer rate [W] + Real64 Power = 0.0; // Chiller power [W] + Real64 EvapOutletTemp = 0.0; // Evaporator outlet temperature [C] + Real64 CondOutletTemp = 0.0; // Condenser outlet temperature [C] + Real64 EvapMassFlowRate = 0.0; // Evaporator mass flow rate [kg/s] + Real64 CondMassFlowRate = 0.0; // Condenser mass flow rate [kg/s] + Real64 ChillerFalseLoad = 0.0; // Chiller false load over and above water side load [W] + Real64 Energy = 0.0; // Chiller electric consumption [J] + Real64 EvapEnergy = 0.0; // Evaporator heat transfer energy [J] + Real64 CondEnergy = 0.0; // Condenser heat transfer energy [J] + Real64 CondInletTemp = 0.0; // Condenser inlet temperature [C] + Real64 EvapInletTemp = 0.0; // Evaporator inlet temperature [C] + Real64 ActualCOP = 0.0; // Coefficient of performance + Real64 EnergyHeatRecovery = 0.0; // Energy recovered from water-cooled condenser [J] + Real64 HeatRecInletTemp = 0.0; // Heat reclaim inlet temperature [C] + Real64 HeatRecMassFlow = 0.0; // Heat reclaim mass flow rate [kg/s] + int ChillerCondLoopFlowFLoopPLRIndex = 0; // Condenser loop flow rate fraction function of loop PLR + int CondDT = 0; // Temperature difference across condenser + int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index + Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; static ReformulatedEIRChillerSpecs *factory(EnergyPlusData &state, std::string const &objectName); From 7cd4072ac6eaccf90f80911533187eea6aab8aa1 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Fri, 7 Jun 2024 12:59:34 -0700 Subject: [PATCH 05/15] Input handling mods. --- src/EnergyPlus/ChillerElectricEIR.cc | 21 ++++++++++----------- src/EnergyPlus/ChillerReformulatedEIR.cc | 21 ++++++++++----------- 2 files changed, 20 insertions(+), 22 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index cf16511ce69..6d22d028104 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -669,7 +669,6 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; - ErrorsFound = true; }; if (NumAlphas > 17) { @@ -688,19 +687,18 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 18) { if (!state.dataIPShortCut->lAlphaFieldBlanks(19)) { thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(19)); - if (thisChiller.CondDTScheduleNum == 0) { - ShowSevereError( - state, format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); - ShowContinueError(state, - format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(19), state.dataIPShortCut->cAlphaArgs(19))); - ErrorsFound = true; - } } else { thisChiller.CondDTScheduleNum = 0; } } else { thisChiller.CondDTScheduleNum = 0; } + if (thisChiller.CondDTScheduleNum == 0 && thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedDeltaTemperature) { + ShowSevereError(state, + format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(19), state.dataIPShortCut->cAlphaArgs(19))); + ErrorsFound = true; + } if (NumNums > 19) { thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(20); @@ -2386,14 +2384,15 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b } } else { ShowFatalError(state, - "CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " - "both loops connected to the condenser and evaporator of the chiller."); + format("{}: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " + "both loops connected to the condenser and evaporator of the chiller.", + RoutineName)); } } break; case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->CondInletTemp, state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, RoutineName); Real64 condDT = 0.0; diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index 104056f986a..c3d3fb51bf2 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -641,7 +641,6 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) format("{}{}=\"{}\",", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(16), state.dataIPShortCut->cAlphaArgs(16))); ShowContinueError(state, "Available choices are ConstantFlow, ModulatedChillerPLR, ModulatedLoopPLR, or ModulatedDeltaTemperature"); - ShowContinueError(state, "Flow mode ConstantFlow is assumed and the simulation continues."); thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; ErrorsFound = true; }; @@ -662,19 +661,18 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 17) { if (!state.dataIPShortCut->lAlphaFieldBlanks(18)) { thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(18)); - if (thisChiller.CondDTScheduleNum == 0) { - ShowSevereError( - state, format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); - ShowContinueError(state, - format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(18), state.dataIPShortCut->cAlphaArgs(18))); - ErrorsFound = true; - } } else { thisChiller.CondDTScheduleNum = 0; } } else { thisChiller.CondDTScheduleNum = 0; } + if (thisChiller.CondDTScheduleNum == 0 && thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedDeltaTemperature) { + ShowSevereError(state, + format("{}{}=\"{}\"", RoutineName, state.dataIPShortCut->cCurrentModuleObject, state.dataIPShortCut->cAlphaArgs(1))); + ShowContinueError(state, format("Invalid {}={}", state.dataIPShortCut->cAlphaFieldNames(18), state.dataIPShortCut->cAlphaArgs(18))); + ErrorsFound = true; + } if (NumNums > 16) { thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(17); @@ -2526,14 +2524,15 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa } } else { ShowFatalError(state, - "CalcElectricEIRChillerModel: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " - "both loops connected to the condenser and evaporator of the chiller."); + format("{}: The ModulatedLoopPLR condenser flow control requires a Sizing:Plant object for " + "both loops connected to the condenser and evaporator of the chiller.", + RoutineName)); } } break; case DataPlant::CondenserFlowControl::ModulatedDeltaTemperature: { Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->CondInletTemp, state.dataPlnt->PlantLoop(this->CWPlantLoc.loopNum).FluidIndex, RoutineName); Real64 condDT = 0.0; From a8bde4c309ab70d86e11a55f142ab46a544fb959 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Tue, 11 Jun 2024 13:11:04 -0700 Subject: [PATCH 06/15] Add unit tests. --- src/EnergyPlus/ChillerElectricEIR.cc | 8 +- src/EnergyPlus/ChillerReformulatedEIR.cc | 8 +- tst/EnergyPlus/unit/CMakeLists.txt | 1 + .../unit/ChillerElectricEIR.unit.cc | 167 ++++++++++++- .../unit/ChillerReformulatedEIR.unit.cc | 226 ++++++++++++++++++ 5 files changed, 398 insertions(+), 12 deletions(-) create mode 100644 tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 6d22d028104..f91357faa5d 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -700,8 +700,8 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) ErrorsFound = true; } - if (NumNums > 19) { - thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(20); + if (NumNums > 18) { + thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(19); } else { thisChiller.MinCondFlowRatio = 0.2; } @@ -1523,7 +1523,7 @@ void ElectricEIRChillerSpecs::size(EnergyPlusData &state) Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->TempRefCondIn, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, @@ -2398,8 +2398,6 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b Real64 condDT = 0.0; if (this->CondDTScheduleNum > 0) { condDT = ScheduleManager::GetCurrentScheduleValue(state, this->CondDTScheduleNum); - } else { - condDT = this->CondDT; } this->CondMassFlowRate = this->QCondenser / (Cp * condDT); } break; diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index c3d3fb51bf2..492366ecb57 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -674,8 +674,8 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) ErrorsFound = true; } - if (NumNums > 16) { - thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(17); + if (NumNums > 15) { + thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(16); } else { thisChiller.MinCondFlowRatio = 0.2; } @@ -1317,7 +1317,7 @@ void ReformulatedEIRChillerSpecs::size(EnergyPlusData &state) if (state.dataSize->PlantSizData(PltSizNum).DesVolFlowRate >= HVAC::SmallWaterVolFlow && tmpNomCap > 0.0) { Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->TempRefCondIn, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, @@ -2538,8 +2538,6 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa Real64 condDT = 0.0; if (this->CondDTScheduleNum > 0) { condDT = ScheduleManager::GetCurrentScheduleValue(state, this->CondDTScheduleNum); - } else { - condDT = this->CondDT; } this->CondMassFlowRate = this->QCondenser / (Cp * condDT); } break; diff --git a/tst/EnergyPlus/unit/CMakeLists.txt b/tst/EnergyPlus/unit/CMakeLists.txt index b5c6e65221a..ccd4e668253 100644 --- a/tst/EnergyPlus/unit/CMakeLists.txt +++ b/tst/EnergyPlus/unit/CMakeLists.txt @@ -61,6 +61,7 @@ set(test_src ChillerConstantCOP.unit.cc ChillerElectric.unit.cc ChillerElectricEIR.unit.cc + ChillerReformulatedEIR.unit.cc ChillerExhaustAbsorption.unit.cc ChillerGasAbsorption.unit.cc ChillerIndirectAbsorption.unit.cc diff --git a/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc b/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc index b78b840f5e9..e550ee9c1ff 100644 --- a/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc +++ b/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc @@ -56,6 +56,8 @@ #include #include #include +#include +#include #include #include #include @@ -208,7 +210,6 @@ TEST_F(EnergyPlusFixture, ChillerElectricEIR_AirCooledChiller) auto &thisEIR = state->dataChillerElectricEIR->ElectricEIRChiller(1); state->dataPlnt->PlantLoop(1).Name = "ChilledWaterLoop"; - state->dataPlnt->PlantLoop(1).FluidName = "ChilledWater"; state->dataPlnt->PlantLoop(1).FluidIndex = 1; state->dataPlnt->PlantLoop(1).PlantSizNum = 1; state->dataPlnt->PlantLoop(1).FluidName = "WATER"; @@ -314,7 +315,6 @@ TEST_F(EnergyPlusFixture, ChillerElectricEIR_EvaporativelyCooled_Calculate) auto &thisEIRChiller = state->dataChillerElectricEIR->ElectricEIRChiller(1); state->dataPlnt->PlantLoop(1).Name = "ChilledWaterLoop"; - state->dataPlnt->PlantLoop(1).FluidName = "ChilledWater"; state->dataPlnt->PlantLoop(1).FluidIndex = 1; state->dataPlnt->PlantLoop(1).PlantSizNum = 1; state->dataPlnt->PlantLoop(1).FluidName = "WATER"; @@ -371,3 +371,166 @@ TEST_F(EnergyPlusFixture, ChillerElectricEIR_EvaporativelyCooled_Calculate) EXPECT_NEAR(6.22019725E-06, EvapCondWaterVolFlowRate, 0.000000001); EXPECT_NEAR(EvapCondWaterVolFlowRate, thisEIRChiller.EvapWaterConsumpRate, 0.000000001); } + +TEST_F(EnergyPlusFixture, ChillerElectricEIR_WaterCooledChillerVariableSpeedCondenser) +{ + + bool RunFlag(true); + state->dataPlnt->TotNumLoops = 2; + state->dataEnvrn->OutBaroPress = 101325.0; + state->dataEnvrn->StdRhoAir = 1.20; + state->dataGlobal->NumOfTimeStepInHour = 1; + state->dataGlobal->TimeStep = 1; + state->dataGlobal->MinutesPerTimeStep = 60; + state->dataGlobal->HourOfDay = 1; + state->dataEnvrn->DayOfWeek = 1; + state->dataEnvrn->Month = 1; + state->dataEnvrn->DayOfMonth = 1; + state->dataEnvrn->DayOfYear_Schedule = General::OrdinalDay(state->dataEnvrn->Month, state->dataEnvrn->DayOfMonth, 1); + Psychrometrics::InitializePsychRoutines(*state); + + std::string const idf_objects = delimited_string({ + "Chiller:Electric:EIR,", + " WaterChiller, !- Name", + " autosize, !- Reference Capacity {W}", + " 1.0, !- Reference COP {W/W}", + " 6.67, !- Reference Leaving Chilled Water Temperature {C}", + " 29.40, !- Reference Entering Condenser Fluid Temperature {C}", + " autosize, !- Reference Chilled Water Flow Rate {m3/s}", + " 0.001, !- Reference Condenser Fluid Flow Rate {m3/s}", + " DummyCapfT, !- Cooling Capacity Function of Temperature Curve Name", + " DummyEIRfT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name", + " DummyEIRfPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name", + " 0.10, !- Minimum Part Load Ratio", + " 1.00, !- Maximum Part Load Ratio", + " 1.00, !- Optimum Part Load Ratio", + " 0.25, !- Minimum Unloading Ratio", + " CHW Inlet Node, !- Chilled Water Inlet Node Name", + " CHW Outlet Node, !- Chilled Water Outlet Node Name", + " Condenser Inlet Node, !- Condenser Inlet Node Name", + " Condenser Outlet Node, !- Condenser Outlet Node Name", + " WaterCooled, !- Condenser Type", + " 0.04, !- Condenser Fan Power Ratio {W/W}", + " 1.00, !- Fraction of Compressor Electric Consumption Rejected by Condenser", + " 5.00, !- Leaving Chilled Water Lower Temperature Limit {C}", + " NotModulated, !- Chiller Flow Mode", + " 0.0, !- Design Heat Recovery Water Flow Rate {m3/s}", + " , !- Heat Recovery Inlet Node Name", + " , !- Heat Recovery Outlet Node Name", + " 1.00, !- Sizing Factor", + " 0.00, !- Basin Heater Capacity {W/K}", + " 2.00, !- Basin Heater Setpoint Temperature {C}", + " , !- Basin Heater Operating Schedule Name", + " 1.00, !- Condenser Heat Recovery Relative Capacity Fraction", + " , !- Heat Recovery Inlet High Temperature Limit Schedule Name", + " , !- Heat Recovery Leaving Temperature Setpoint Node Name", + " , !- End-Use Subcategory", + " ModulatedLoopPLR, !- Condenser Flow Control", + " Y=F(X), !- Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name", + " CondenserdT, !- Temperature Difference Across Condenser Schedule Name", + " 0.35; !- Condenser Minimum Flow Fraction", + "Curve:Linear,Y=F(X),0,1,0,1;", + "Schedule:Constant,CondenserdT,,10;" + "Curve:Biquadratic, DummyCapfT, 1, 0, 0, 0, 0, 0, 5, 10, 24, 35, , , , , ;", + "Curve:Biquadratic, DummyEIRfT, 1, 0, 0, 0, 0, 0, 5, 10, 24, 35, , , , , ;", + "Curve:Quadratic, DummyEIRfPLR, 1, 0, 0, 0, 1, , , , ;", + + }); + + EXPECT_TRUE(process_idf(idf_objects, false)); + + state->dataPlnt->PlantLoop.allocate(state->dataPlnt->TotNumLoops); + state->dataPlnt->PlantLoop.allocate(state->dataPlnt->TotNumLoops); + for (int l = 1; l <= state->dataPlnt->TotNumLoops; ++l) { + auto &loopside(state->dataPlnt->PlantLoop(l).LoopSide(DataPlant::LoopSideLocation::Demand)); + loopside.TotalBranches = 1; + loopside.Branch.allocate(1); + auto &loopsidebranch(state->dataPlnt->PlantLoop(l).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1)); + loopsidebranch.TotalComponents = 1; + loopsidebranch.Comp.allocate(1); + } + + GetElectricEIRChillerInput(*state); + auto &thisChiller = state->dataChillerElectricEIR->ElectricEIRChiller(1); + state->dataLoopNodes->Node.allocate(10); + + state->dataPlnt->PlantLoop(1).Name = "ChilledWaterLoop"; + state->dataPlnt->PlantLoop(1).FluidIndex = 1; + state->dataPlnt->PlantLoop(1).PlantSizNum = 1; + state->dataPlnt->PlantLoop(1).FluidName = "WATER"; + state->dataPlnt->PlantLoop(1).TempSetPointNodeNum = 10; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Name = thisChiller.Name; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Type = + DataPlant::PlantEquipmentType::Chiller_ElectricEIR; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumIn = thisChiller.EvapInletNodeNum; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumOut = thisChiller.EvapOutletNodeNum; + state->dataPlnt->PlantLoop(1).LoopDemandCalcScheme = DataPlant::LoopDemandCalcScheme::SingleSetPoint; + state->dataPlnt->PlantLoop(1).LoopSide(EnergyPlus::DataPlant::LoopSideLocation::Demand).TempSetPoint = 4.4; + + state->dataSize->PlantSizData.allocate(2); + state->dataSize->PlantSizData(1).DesVolFlowRate = 0.001; + state->dataSize->PlantSizData(1).DeltaT = 5.0; + + state->dataPlnt->PlantLoop(2).Name = "CondenserWaterLoop"; + state->dataPlnt->PlantLoop(2).FluidIndex = 1; + state->dataPlnt->PlantLoop(2).PlantSizNum = 1; + state->dataPlnt->PlantLoop(2).FluidName = "WATER"; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Name = thisChiller.Name; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Type = + DataPlant::PlantEquipmentType::Chiller_ElectricEIR; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumIn = thisChiller.CondInletNodeNum; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumOut = thisChiller.CondOutletNodeNum; + + state->dataSize->PlantSizData(2).DesVolFlowRate = 0.001; + state->dataSize->PlantSizData(2).DeltaT = 5.0; + + state->dataPlnt->PlantFirstSizesOkayToFinalize = true; + state->dataPlnt->PlantFirstSizesOkayToReport = true; + state->dataPlnt->PlantFinalSizesOkayToReport = true; + + Real64 MyLoad(0.0); + thisChiller.initialize(*state, RunFlag, MyLoad); + thisChiller.size(*state); + MyLoad = -thisChiller.RefCap; + state->dataSize->PlantSizData(1).DesCapacity = std::abs(MyLoad) * 2; + ScheduleManager::UpdateScheduleValues(*state); + + // run through init again after sizing is complete to set mass flow rate + state->dataGlobal->BeginEnvrnFlag = true; + thisChiller.initialize(*state, RunFlag, MyLoad); + + // set node temperatures + state->dataLoopNodes->Node(thisChiller.CondInletNodeNum).Temp = 25.0; + state->dataLoopNodes->Node(thisChiller.EvapInletNodeNum).Temp = 15.0; + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).LoopSide(thisChiller.CWPlantLoc.loopSideNum).UpdatedDemandToLoopSetPoint = MyLoad; + state->dataLoopNodes->Node(state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).TempSetPointNodeNum).TempSetPoint = 21.0; + + // Test the different control approaches + thisChiller.calculate(*state, MyLoad, RunFlag); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax / 2, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedChillerPLR; + MyLoad /= 2; + thisChiller.calculate(*state, MyLoad, RunFlag); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax / 2, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedDeltaTemperature; + thisChiller.calculate(*state, MyLoad, RunFlag); + Real64 Cp = FluidProperties::GetSpecificHeatGlycol(*state, + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).FluidName, + thisChiller.CondInletTemp, + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).FluidIndex, + "ChillerElectricEIR_WaterCooledChillerVariableSpeedCondenser"); + Real64 ActualCondFlow = 3.0 * std::abs(MyLoad) / (Cp * 10.0); + EXPECT_NEAR(thisChiller.CondMassFlowRate, ActualCondFlow, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + thisChiller.calculate(*state, MyLoad, RunFlag); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax, 0.00001); + + // Test the minimum condenser flow rate + MyLoad = -500; + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedChillerPLR; + thisChiller.calculate(*state, MyLoad, RunFlag); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax * 0.35, 0.00001); +} diff --git a/tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc b/tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc new file mode 100644 index 00000000000..42bae50739d --- /dev/null +++ b/tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc @@ -0,0 +1,226 @@ +// EnergyPlus, Copyright (c) 1996-2024, The Board of Trustees of the University of Illinois, +// The Regents of the University of California, through Lawrence Berkeley National Laboratory +// (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge +// National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other +// contributors. All rights reserved. +// +// NOTICE: This Software was developed under funding from the U.S. Department of Energy and the +// U.S. Government consequently retains certain rights. As such, the U.S. Government has been +// granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, +// worldwide license in the Software to reproduce, distribute copies to the public, prepare +// derivative works, and perform publicly and display publicly, and to permit others to do so. +// +// Redistribution and use in source and binary forms, with or without modification, are permitted +// provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, this list of +// conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, this list of +// conditions and the following disclaimer in the documentation and/or other materials +// provided with the distribution. +// +// (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, +// the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be +// used to endorse or promote products derived from this software without specific prior +// written permission. +// +// (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form +// without changes from the version obtained under this License, or (ii) Licensee makes a +// reference solely to the software portion of its product, Licensee must refer to the +// software as "EnergyPlus version X" software, where "X" is the version number Licensee +// obtained under this License and may not use a different name for the software. Except as +// specifically required in this Section (4), Licensee shall not use in a company name, a +// product name, in advertising, publicity, or other promotional activities any name, trade +// name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly +// similar designation, without the U.S. Department of Energy's prior written consent. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR +// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +// AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR +// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +// POSSIBILITY OF SUCH DAMAGE. + +// EnergyPlus::Standalone ERV Unit Tests + +// Google Test Headers +#include + +// EnergyPlus Headers +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Fixtures/EnergyPlusFixture.hh" + +using namespace EnergyPlus; +using namespace EnergyPlus::ChillerReformulatedEIR; +using namespace EnergyPlus::DataLoopNode; + +TEST_F(EnergyPlusFixture, ChillerElectricReformulatedEIR_WaterCooledChillerVariableSpeedCondenser) +{ + + bool RunFlag(true); + state->dataPlnt->TotNumLoops = 2; + state->dataEnvrn->OutBaroPress = 101325.0; + state->dataEnvrn->StdRhoAir = 1.20; + state->dataGlobal->NumOfTimeStepInHour = 1; + state->dataGlobal->TimeStep = 1; + state->dataGlobal->MinutesPerTimeStep = 60; + state->dataGlobal->HourOfDay = 1; + state->dataEnvrn->DayOfWeek = 1; + state->dataEnvrn->Month = 1; + state->dataEnvrn->DayOfMonth = 1; + state->dataEnvrn->DayOfYear_Schedule = General::OrdinalDay(state->dataEnvrn->Month, state->dataEnvrn->DayOfMonth, 1); + Psychrometrics::InitializePsychRoutines(*state); + + std::string const idf_objects = delimited_string({ + "Chiller:Electric:ReformulatedEIR,", + " WaterChiller, !- Name", + " autosize, !- Reference Capacity {W}", + " 1, !- Reference COP {W/W}", + " 6.67, !- Reference Leaving Chilled Water Temperature {C}", + " 29.40, !- Reference Entering Condenser Fluid Temperature {C}", + " autosize, !- Reference Chilled Water Flow Rate {m3/s}", + " 0.001, !- Reference Condenser Fluid Flow Rate {m3/s}", + " DummyCapfT, !- Cooling Capacity Function of Temperature Curve Name", + " DummyEIRfT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name", + " LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type", + " DummyEIRfPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name", + " 0.10, !- Minimum Part Load Ratio", + " 1.00, !- Maximum Part Load Ratio", + " 1.00, !- Optimum Part Load Ratio", + " 0.25, !- Minimum Unloading Ratio", + " CHW Inlet Node, !- Chilled Water Inlet Node Name", + " CHW Outlet Node, !- Chilled Water Outlet Node Name", + " Condenser Inlet Node, !- Condenser Inlet Node Name", + " Condenser Outlet Node, !- Condenser Outlet Node Name", + " 1, !- Fraction of Compressor Electric Consumption Rejected by Condenser", + " 2, !- Leaving Chilled Water Lower Temperature Limit {C}", + " ConstantFlow, !- Chiller Flow Mode", + " 0.0, !- Design Heat Recovery Water Flow Rate {m3/s}", + " , !- Heat Recovery Inlet Node Name", + " , !- Heat Recovery Outlet Node Name", + " 1.00, !- Sizing Factor", + " 1.00, !- Condenser Heat Recovery Relative Capacity Fraction", + " , !- Heat Recovery Inlet High Temperature Limit Schedule Name", + " , !- Heat Recovery Leaving Temperature Setpoint Node Name", + " , !- End-Use Subcategory", + " ModulatedLoopPLR, !- Condenser Flow Control", + " Y=F(X), !- Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name", + " CondenserdT, !- Temperature Difference Across Condenser Schedule Name", + " 0.35; !- Condenser Minimum Flow Fraction", + "Curve:Linear,Y=F(X),0,1,0,1;", + "Schedule:Constant,CondenserdT,,10.0;" + "Curve:Biquadratic, DummyCapfT, 1, 0, 0, 0, 0, 0, 5, 10, 24, 35, , , , , ;", + "Curve:Biquadratic, DummyEIRfT, 1, 0, 0, 0, 0, 0, 5, 10, 24, 35, , , , , ;", + "Curve:Biquadratic, DummyEIRfPLR, 1, 0, 0, 0, 0, 0, 5, 10, 0, 1, , , , , ;", + }); + + EXPECT_TRUE(process_idf(idf_objects, false)); + + state->dataPlnt->PlantLoop.allocate(state->dataPlnt->TotNumLoops); + state->dataPlnt->PlantLoop.allocate(state->dataPlnt->TotNumLoops); + for (int l = 1; l <= state->dataPlnt->TotNumLoops; ++l) { + auto &loopside(state->dataPlnt->PlantLoop(l).LoopSide(DataPlant::LoopSideLocation::Demand)); + loopside.TotalBranches = 1; + loopside.Branch.allocate(1); + auto &loopsidebranch(state->dataPlnt->PlantLoop(l).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1)); + loopsidebranch.TotalComponents = 1; + loopsidebranch.Comp.allocate(1); + } + + GetElecReformEIRChillerInput(*state); + auto &thisChiller = state->dataChillerReformulatedEIR->ElecReformEIRChiller(1); + state->dataLoopNodes->Node.allocate(4); + + state->dataPlnt->PlantLoop(1).Name = "ChilledWaterLoop"; + state->dataPlnt->PlantLoop(1).FluidIndex = 1; + state->dataPlnt->PlantLoop(1).PlantSizNum = 1; + state->dataPlnt->PlantLoop(1).FluidName = "WATER"; + state->dataPlnt->PlantLoop(1).TempSetPointNodeNum = 10; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Name = thisChiller.Name; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Type = + DataPlant::PlantEquipmentType::Chiller_ElectricReformEIR; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumIn = thisChiller.EvapInletNodeNum; + state->dataPlnt->PlantLoop(1).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumOut = thisChiller.EvapOutletNodeNum; + state->dataPlnt->PlantLoop(1).LoopDemandCalcScheme = DataPlant::LoopDemandCalcScheme::SingleSetPoint; + state->dataPlnt->PlantLoop(1).LoopSide(EnergyPlus::DataPlant::LoopSideLocation::Demand).TempSetPoint = 4.4; + state->dataLoopNodes->Node(thisChiller.EvapOutletNodeNum).TempSetPoint = 4.4; + + state->dataSize->PlantSizData.allocate(2); + state->dataSize->PlantSizData(1).DesVolFlowRate = 0.001; + state->dataSize->PlantSizData(1).DeltaT = 5.0; + + state->dataPlnt->PlantLoop(2).Name = "CondenserWaterLoop"; + state->dataPlnt->PlantLoop(2).FluidIndex = 1; + state->dataPlnt->PlantLoop(2).PlantSizNum = 1; + state->dataPlnt->PlantLoop(2).FluidName = "WATER"; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Name = thisChiller.Name; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).Type = + DataPlant::PlantEquipmentType::Chiller_ElectricReformEIR; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumIn = thisChiller.CondInletNodeNum; + state->dataPlnt->PlantLoop(2).LoopSide(DataPlant::LoopSideLocation::Demand).Branch(1).Comp(1).NodeNumOut = thisChiller.CondOutletNodeNum; + + state->dataSize->PlantSizData(2).DesVolFlowRate = 0.001; + state->dataSize->PlantSizData(2).DeltaT = 5.0; + + state->dataPlnt->PlantFirstSizesOkayToFinalize = true; + state->dataPlnt->PlantFirstSizesOkayToReport = true; + state->dataPlnt->PlantFinalSizesOkayToReport = true; + + Real64 MyLoad(0.0); + thisChiller.initialize(*state, RunFlag, MyLoad); + thisChiller.size(*state); + MyLoad = -thisChiller.RefCap; + state->dataSize->PlantSizData(1).DesCapacity = std::abs(MyLoad) * 2; + ScheduleManager::UpdateScheduleValues(*state); + + // run through init again after sizing is complete to set mass flow rate + state->dataGlobal->BeginEnvrnFlag = true; + thisChiller.initialize(*state, RunFlag, MyLoad); + + // set node temperatures + state->dataLoopNodes->Node(thisChiller.CondInletNodeNum).Temp = 25.0; + state->dataLoopNodes->Node(thisChiller.EvapInletNodeNum).Temp = 15.0; + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).LoopSide(thisChiller.CWPlantLoc.loopSideNum).UpdatedDemandToLoopSetPoint = MyLoad; + + thisChiller.control(*state, MyLoad, RunFlag, false); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax / 2, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedChillerPLR; + MyLoad /= 2; + thisChiller.control(*state, MyLoad, RunFlag, false); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax / 2, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedDeltaTemperature; + Real64 Cp = FluidProperties::GetSpecificHeatGlycol(*state, + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).FluidName, + thisChiller.CondInletTemp, + state->dataPlnt->PlantLoop(thisChiller.CWPlantLoc.loopNum).FluidIndex, + "ChillerElectricEIR_WaterCooledChillerVariableSpeedCondenser"); + thisChiller.control(*state, MyLoad, RunFlag, false); + Real64 ActualCondFlow = 3.0 * std::abs(MyLoad) / (Cp * 10.0); + EXPECT_NEAR(thisChiller.CondMassFlowRate, ActualCondFlow, 0.00001); + + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ConstantFlow; + thisChiller.control(*state, MyLoad, RunFlag, false); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax, 0.00001); + + // Test the minimum condenser flow rate + MyLoad = -500; + thisChiller.CondenserFlowControl = DataPlant::CondenserFlowControl::ModulatedChillerPLR; + thisChiller.control(*state, MyLoad, RunFlag, false); + EXPECT_NEAR(thisChiller.CondMassFlowRate, thisChiller.CondMassFlowRateMax * 0.35, 0.00001); +} From 870c16297cdd8fa3841373ca986635479df9e61d Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Wed, 12 Jun 2024 12:51:04 -0700 Subject: [PATCH 07/15] Add docs. --- .../NFP_VariableCondenserFlowRequest.md | 9 +-- .../chillers.tex | 57 +++++++++++++++++++ .../src/overview/group-plant-equipment.tex | 33 +++++++++++ 3 files changed, 91 insertions(+), 8 deletions(-) diff --git a/design/FY2024/NFP_VariableCondenserFlowRequest.md b/design/FY2024/NFP_VariableCondenserFlowRequest.md index a32c57a27aa..a4e8e0b7ae8 100644 --- a/design/FY2024/NFP_VariableCondenserFlowRequest.md +++ b/design/FY2024/NFP_VariableCondenserFlowRequest.md @@ -78,20 +78,13 @@ A18, \field Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio C \note option is used. \type object-list \object-list UnivariateFunctions -N19, \field Temperature Difference Across Condenser - \type real - \units C - \minimum 2.0 - \default 15.0 - \note The temperature difference across the condenser. This input is used to calculate the condenser flow - \note request.This input is only used when "Condenser Flow Control" is set to "ModulatedDeltaTemperature". A20, \field Temperature Difference Across Condenser Schedule Name \note A schedule that defines the temperature difference across the condenser. This input is used to \note calculate the condenser flow. This input is only used when "Condenser Flow Control" is set to \note "ModulatedDeltaTemperature". \type object-list \object-list ScheduleNames -N20; \field Condenser Minimum Flow Fraction +N19; \field Condenser Minimum Flow Fraction \note This input corresponds to the minimum flow fraction to be simulated. The minimum condenser flow \note corresponds to this fraction multiplied by the maximum condenser flow rate. This input is only used \note when the "Condenser Flow Control" input is set to "ModulatedChillerPLR", "ModulatedLoopPLR" or diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex index dbef26c420b..283b7ff9f80 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex @@ -2006,3 +2006,60 @@ \subsubsection{Chiller Basin Heater}\label{chiller-basin-heater-3} \emph{Schedule\(_{heater,basin}\)} is the basin heater schedule, user input (schedule value \textgreater{} 0 means ON) \emph{ChillerIsOFF} is the logical variable denoting that the chiller is not operating for the current simulation time step (e.g.,~ there is no cooling load to be met by the chiller, or if there is no water flow through the chiller due to a chiller or pump availability schedule, etc.). + +\subsection{Variable Flow Condenser}\label{hot-water-heat-recovery-from-chillers} + +The \hyperref[electric-chiller-model-based-on-condenser-entering-temperature](Chiller:Electric:EIR) and \hyperref[electric-chiller-model-based-on-condenser-leaving-temperature](Chiller:Electric:ReformulatedEIR) have the capability to simulate variable condenser flow requests. The flow request can be capped to a minimum via a user-defined fraction. The flow request can be calculated using one of the following approaches: + +\begin{itemize} + \item Chiller part load ratio + \item Chilled water part load ratio + \item Condenser temperature difference +\end{itemize} + +Note that simulating a variable flow condenser will, at identical load and entering conditions, modify the condenser leaving water temperature when compared with a constant flow condenser. The performance of a Chiller:Electric:EIR object won't be impacted by a change in leaving water condenser temperature but the performance of a Chiller:Electric:ReformulatedEIR object will be impacted. + +\subsubsection{Chiller Part Load Ratio} + +The flow request is determined by multiplying the maximum chiller condenser mass flow rate by the chiller operating part load ratio. + +\subsubsection{Chiller water part load ratio} + +The flow request is determined by first calculating the chilled water loop (CHWL) part load ratio: + +\begin{equation} +{PLR_{CHWL}} = \frac{{L_{CHWL}}}{CAP_{CHWL}} +\end{equation} + +where: + +\({PLR_{CHWL}}\) is the chilled water loop part load ratio + +\({L_{CHWL}}\) is the actual load on the chilled water loop + +\({CAP_{CHWL}}\) is the design chilled water loop capacity determined using inputs from the Sizing:Plant object for the loop + + +The condenser plant loop water flow fraction (\({CWFR}\)) corresponding to the \({PLR_{CWHL}}\) is obtained by feeding it through a user-specified curve. A linear curve is expected: \(CWFR = C * {PLR_{CHWL}} + D\) where C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. + +The actual condenser mass flow request for the chiller is then calculated as follows: + +\begin{equation} +{\dot m_{chiller_{condenser}}} = \frac{{\dot m_{condenser_{loop_{design}}}} . {CWFR} . {\dot Q_{chiller_{evaporator}}}}{L_{CHWL}} +\end{equation} + +If a single chiller is meeting the \({L_{CHWL}}\), then \({\dot m_{chiller_{condenser}}} = {\dot m_{condenser_{loop_{design}}}} * {CWFR}\). + +\subsubsection{Chiller water part load ratio} + +The flow request is determined as follows: + +\begin{equation} +{\dot m_{chiller_{condenser}}} = \frac{{\dot Q_{chiller_{condenser}}}}{({C_p} . {\Delta {T_{condenser}}})} +\end{equation} + +where: + +\({\dot Q_{chiller_{condenser}}}\) is the chiller's condenser heat transfer rate + +\({\Delta {T_{condenser}}}\) is the user-defined temperature difference across the chiller condenser bundle diff --git a/doc/input-output-reference/src/overview/group-plant-equipment.tex b/doc/input-output-reference/src/overview/group-plant-equipment.tex index 5626dcfa515..81f2a97c382 100644 --- a/doc/input-output-reference/src/overview/group-plant-equipment.tex +++ b/doc/input-output-reference/src/overview/group-plant-equipment.tex @@ -1743,6 +1743,23 @@ \subsubsection{Inputs}\label{inputs-4-023} This optional field allows you to specify a user-defined end-use subcategory, e.g., ``Process''. A new meter for reporting is created for each unique subcategory (ref: \hyperref[outputmeter-and-outputmetermeterfileonly]{Output:Meter} objects). Any text may be used here to further subcategorize the end-uses in the ABUPS End Uses by Subcategory table and in the LEED Summary EAp2-4/5 Performance Rating Method Compliance table. If this field is omitted or blank, the chiller will be assigned to the ``General'' end-use subcategory. +\paragraph{Field: Condenser Flow Control}\label{field-condenser-flow-control} + +This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. + +\paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name} + +This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. + +\paragraph{Field: Temperature Difference Across Condenser Schedule Name}\label{field-temperature-difference-across-condenser-schedule-name} + +This field should be a schedule that defines the temperature difference across the condenser of the chiller. This input is used to calculate the condenser flow rate request. This input is only used when ``Condenser Flow Control'' is set to ``ModulatedDeltaTemperature''. + +\paragraph{Field: Condenser Minimum Flow Fraction} + +This field corresponds to the minimum condenser flow fraction. The minimum condenser flow is equal to the value of this input multiplied by the chiller maximum condenser flow rate. This input is only used when the ``Condenser Flow Control'' input is set to ``ModulatedChillerPLR'', ``ModulatedLoopPLR'' or ``ModulatedDeltaTemperature''. When not specified, a default of 0.2 is assumed. + + An example of this statement in an IDF is: \begin{lstlisting} @@ -2131,6 +2148,22 @@ \subsubsection{Inputs}\label{inputs-5-021} This optional field allows you to specify a user-defined end-use subcategory, e.g., ``Process''. A new meter for reporting is created for each unique subcategory (ref: \hyperref[outputmeter-and-outputmetermeterfileonly]{Output:Meter} objects). Any text may be used here to further subcategorize the end-uses in the ABUPS End Uses by Subcategory table and in the LEED Summary EAp2-4/5 Performance Rating Method Compliance table. If this field is omitted or blank, the chiller will be assigned to the ``General'' end-use subcategory. +\paragraph{Field: Condenser Flow Control}\label{field-condenser-flow-control} + +This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. + +\paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name} + +This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. + +\paragraph{Field: Temperature Difference Across Condenser Schedule Name}\label{field-temperature-difference-across-condenser-schedule-name} + +This field should be a schedule that defines the temperature difference across the condenser of the chiller. This input is used to calculate the condenser flow rate request. This input is only used when ``Condenser Flow Control'' is set to ``ModulatedDeltaTemperature''. + +\paragraph{Field: Condenser Minimum Flow Fraction} + +This field corresponds to the minimum condenser flow fraction. The minimum condenser flow is equal to the value of this input multiplied by the chiller maximum condenser flow rate. This input is only used when the ``Condenser Flow Control'' input is set to ``ModulatedChillerPLR'', ``ModulatedLoopPLR'' or ``ModulatedDeltaTemperature''. When not specified, a default of 0.2 is assumed. + An example of this statement in an IDF is: From ec2847c6a2c5e14116e5d257555a45a083959176 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Wed, 12 Jun 2024 12:53:57 -0700 Subject: [PATCH 08/15] Revert small change. --- src/EnergyPlus/ChillerElectricEIR.cc | 2 +- src/EnergyPlus/ChillerReformulatedEIR.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 576ff19a101..84d19b5b5cc 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -1521,7 +1521,7 @@ void ElectricEIRChillerSpecs::size(EnergyPlusData &state) Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - this->TempRefCondIn, + Constant::CWInitConvTemp, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index 19a0b2e7ec8..b73bae0e0ee 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -1316,7 +1316,7 @@ void ReformulatedEIRChillerSpecs::size(EnergyPlusData &state) if (state.dataSize->PlantSizData(PltSizNum).DesVolFlowRate >= HVAC::SmallWaterVolFlow && tmpNomCap > 0.0) { Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - this->TempRefCondIn, + Constant::CWInitConvTemp, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, From 1ddd55bc3d7037befc8249fb8102167f884f4072 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Thu, 13 Jun 2024 10:09:34 -0700 Subject: [PATCH 09/15] Add control for minimum VS flow. --- src/EnergyPlus/ChillerElectricEIR.cc | 7 ++++++- src/EnergyPlus/ChillerElectricEIR.hh | 3 +++ src/EnergyPlus/ChillerReformulatedEIR.cc | 7 ++++++- src/EnergyPlus/ChillerReformulatedEIR.hh | 3 +++ src/EnergyPlus/PlantUtilities.cc | 21 ++++++++++++--------- 5 files changed, 30 insertions(+), 11 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 84d19b5b5cc..7b9e2341a6d 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -1348,6 +1348,9 @@ void ElectricEIRChillerSpecs::initialize(EnergyPlusData &state, bool const RunFl if (this->CondenserType == DataPlant::CondenserType::WaterCooled) { PlantUtilities::SetComponentFlowRate(state, mdotCond, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); + // get minimum condenser plant loop pump mass flow rate + this->VSBranchPumpMinLimitMassFlowCond = + PlantUtilities::MinFlowIfBranchHasVSPump(state, this->CDPlantLoc, this->VSBranchPumpFoundCond, this->VSLoopPumpFoundCond, false); } // Initialize heat recovery flow rates at node if (this->HeatRecActive) { @@ -2403,7 +2406,9 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b this->CondMassFlowRate = this->CondMassFlowRateMax; } break; } - this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), this->MinCondFlowRatio * this->CondMassFlowRateMax); + this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), + this->MinCondFlowRatio * this->CondMassFlowRateMax, + this->VSBranchPumpMinLimitMassFlowCond); PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); PlantUtilities::PullCompInterconnectTrigger( state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); diff --git a/src/EnergyPlus/ChillerElectricEIR.hh b/src/EnergyPlus/ChillerElectricEIR.hh index f0cdb748e18..c8a2d38b37a 100644 --- a/src/EnergyPlus/ChillerElectricEIR.hh +++ b/src/EnergyPlus/ChillerElectricEIR.hh @@ -193,6 +193,9 @@ namespace ChillerElectricEIR { int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; + Real64 VSBranchPumpMinLimitMassFlowCond = 0.0; + bool VSBranchPumpFoundCond = false; + bool VSLoopPumpFoundCond = false; static ElectricEIRChillerSpecs *factory(EnergyPlusData &state, std::string const &objectName); diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index b73bae0e0ee..f7603cf5ff0 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -1061,6 +1061,9 @@ void ReformulatedEIRChillerSpecs::initialize(EnergyPlusData &state, bool const R this->CondMassFlowRateMax = rho * this->CondVolFlowRate; PlantUtilities::InitComponentNodes(state, 0.0, this->CondMassFlowRateMax, this->CondInletNodeNum, this->CondOutletNodeNum); state.dataLoopNodes->Node(this->CondInletNodeNum).Temp = this->TempRefCondIn; + // get minimum condenser plant loop pump mass flow rate + this->VSBranchPumpMinLimitMassFlowCond = + PlantUtilities::MinFlowIfBranchHasVSPump(state, this->CDPlantLoc, this->VSBranchPumpFoundCond, this->VSLoopPumpFoundCond, false); } else { // air or evap air condenser // Initialize maximum available condenser flow rate state.dataLoopNodes->Node(this->CondInletNodeNum).MassFlowRate = @@ -2544,7 +2547,9 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa this->CondMassFlowRate = this->CondMassFlowRateMax; } break; } - this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), this->MinCondFlowRatio * this->CondMassFlowRateMax); + this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), + this->MinCondFlowRatio * this->CondMassFlowRateMax, + this->VSBranchPumpMinLimitMassFlowCond); PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); PlantUtilities::PullCompInterconnectTrigger( state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); diff --git a/src/EnergyPlus/ChillerReformulatedEIR.hh b/src/EnergyPlus/ChillerReformulatedEIR.hh index 20a6b5f2212..1f4e21e9e84 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.hh +++ b/src/EnergyPlus/ChillerReformulatedEIR.hh @@ -217,6 +217,9 @@ namespace ChillerReformulatedEIR { int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; + Real64 VSBranchPumpMinLimitMassFlowCond = 0.0; + bool VSBranchPumpFoundCond = false; + bool VSLoopPumpFoundCond = false; static ReformulatedEIRChillerSpecs *factory(EnergyPlusData &state, std::string const &objectName); diff --git a/src/EnergyPlus/PlantUtilities.cc b/src/EnergyPlus/PlantUtilities.cc index 3d442924399..6ecabb91bbe 100644 --- a/src/EnergyPlus/PlantUtilities.cc +++ b/src/EnergyPlus/PlantUtilities.cc @@ -2038,15 +2038,18 @@ MinFlowIfBranchHasVSPump(EnergyPlusData &state, PlantLocation const &plantLoc, b if (!foundBranchPump) { // second, if no branch pump, search for variable speed pump on inlet branch of supply side of this loop - int NumCompsOnInletBranch = - state.dataPlnt->PlantLoop(plantLoc.loopNum).LoopSide(DataPlant::LoopSideLocation::Supply).Branch(1).TotalComponents; - for (int CompCounter = 1; CompCounter <= NumCompsOnInletBranch; ++CompCounter) { - auto &component(state.dataPlnt->PlantLoop(plantLoc.loopNum).LoopSide(DataPlant::LoopSideLocation::Supply).Branch(1).Comp(CompCounter)); - if (component.Type == DataPlant::PlantEquipmentType::PumpVariableSpeed || - component.Type == DataPlant::PlantEquipmentType::PumpBankVariableSpeed) { - foundLoopPump = true; - if (component.CompNum > 0) branchPumpMinFlowLimit = state.dataPumps->PumpEquip(component.CompNum).MassFlowRateMin; - break; + if (state.dataPlnt->PlantLoop(plantLoc.loopNum).LoopSide(DataPlant::LoopSideLocation::Supply).TotalBranches > 1) { + int NumCompsOnInletBranch = + state.dataPlnt->PlantLoop(plantLoc.loopNum).LoopSide(DataPlant::LoopSideLocation::Supply).Branch(1).TotalComponents; + for (int CompCounter = 1; CompCounter <= NumCompsOnInletBranch; ++CompCounter) { + auto &component( + state.dataPlnt->PlantLoop(plantLoc.loopNum).LoopSide(DataPlant::LoopSideLocation::Supply).Branch(1).Comp(CompCounter)); + if (component.Type == DataPlant::PlantEquipmentType::PumpVariableSpeed || + component.Type == DataPlant::PlantEquipmentType::PumpBankVariableSpeed) { + foundLoopPump = true; + if (component.CompNum > 0) branchPumpMinFlowLimit = state.dataPumps->PumpEquip(component.CompNum).MassFlowRateMin; + break; + } } } } From cd433083e152905ea6b5e1382913ccef74cad27d Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Thu, 13 Jun 2024 10:11:28 -0700 Subject: [PATCH 10/15] Additional docs. --- .../src/simulation-models-encyclopedic-reference/chillers.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex index 283b7ff9f80..b4187f862ee 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex @@ -2009,7 +2009,7 @@ \subsubsection{Chiller Basin Heater}\label{chiller-basin-heater-3} \subsection{Variable Flow Condenser}\label{hot-water-heat-recovery-from-chillers} -The \hyperref[electric-chiller-model-based-on-condenser-entering-temperature](Chiller:Electric:EIR) and \hyperref[electric-chiller-model-based-on-condenser-leaving-temperature](Chiller:Electric:ReformulatedEIR) have the capability to simulate variable condenser flow requests. The flow request can be capped to a minimum via a user-defined fraction. The flow request can be calculated using one of the following approaches: +The \hyperref[electric-chiller-model-based-on-condenser-entering-temperature](Chiller:Electric:EIR) and \hyperref[electric-chiller-model-based-on-condenser-leaving-temperature](Chiller:Electric:ReformulatedEIR) have the capability to simulate variable condenser flow requests. The flow request can be capped to a minimum via a user-defined fraction. The minimum condenser plant loop flow rate will be limited by the minimum flow rates of the operating pumps. The flow request can be calculated using one of the following approaches: \begin{itemize} \item Chiller part load ratio From df83a6eaccd6c5ba7dfe991dcc494ef045729bc6 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Thu, 13 Jun 2024 10:37:49 -0700 Subject: [PATCH 11/15] Add example file. --- testfiles/CMakeLists.txt | 1 + ...terCooledChillerWithVSCondenserControl.idf | 23825 ++++++++++++++++ 2 files changed, 23826 insertions(+) create mode 100644 testfiles/WaterCooledChillerWithVSCondenserControl.idf diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt index 7855ff4baf2..e9dec1cbc7b 100644 --- a/testfiles/CMakeLists.txt +++ b/testfiles/CMakeLists.txt @@ -686,6 +686,7 @@ add_simulation_test(IDF_FILE VentilatedSlab.idf EPW_FILE USA_IL_Chicago-OHare.In add_simulation_test(IDF_FILE VentilatedSlab_SeriesSlabs.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE VentilationSimpleTest.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE VRFMultispeedFan.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +add_simulation_test(IDF_FILE WaterCooledChillerWithVSCondenserControl.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE WaterHeaterDHWPlantLoop.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE WaterHeaterHeatPumpStratifiedTank.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE WaterHeaterHeatPumpWrappedCondenser.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) diff --git a/testfiles/WaterCooledChillerWithVSCondenserControl.idf b/testfiles/WaterCooledChillerWithVSCondenserControl.idf new file mode 100644 index 00000000000..3951368d88e --- /dev/null +++ b/testfiles/WaterCooledChillerWithVSCondenserControl.idf @@ -0,0 +1,23825 @@ +!-Generator IDFEditor 1.50 +!-Option SortedOrder UseSpecialFormat +!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. +!- Use '!' comments if they need to be retained when using the IDFEditor. +!- =========== ALL OBJECTS IN CLASS: VERSION =========== + + Version,24.1; + +!- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods + No, !- Do HVAC Sizing Simulation for Sizing Periods + 1; !- Maximum Number of HVAC Sizing Simulation Passes + +!- =========== ALL OBJECTS IN CLASS: BUILDING =========== + + Building, + Large Office-VAV-HW-Reheat Min Req, !- Name + , !- North Axis {deg} + , !- Terrain + , !- Loads Convergence Tolerance Value {W} + , !- Temperature Convergence Tolerance Value {deltaC} + , !- Solar Distribution + , !- Maximum Number of Warmup Days + ; !- Minimum Number of Warmup Days + +!- =========== ALL OBJECTS IN CLASS: TIMESTEP =========== + + Timestep,4; + +!- =========== ALL OBJECTS IN CLASS: SITE:LOCATION =========== + + Site:Location, + CHICAGO_IL_USA_WMO_725300, !- Name + 42.00, !- Latitude {deg} + -87.88, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190.00; !- Elevation {m} + +!- =========== ALL OBJECTS IN CLASS: SIZINGPERIOD:DESIGNDAY =========== + + SizingPeriod:DesignDay, + CHICAGO Ann Htg 99% Condns DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 0.0; !- Sky Clearness + +! CHICAGO_IL_USA Annual Cooling (DB=>MWB) 1%, MaxDB=31.5°C MWB=23°C + + SizingPeriod:DesignDay, + CHICAGO Ann Clg 1% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.5, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063, !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + + +!- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== + + RunPeriod, + Run Period 1, !- Name + 5, !- Begin Month + 1, !- Begin Day of Month + 2009, !- Begin Year + 5, !- End Month + 15, !- End Day of Month + 2009, !- End Year + Thursday, !- Day of Week for Start Day + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + +!- =========== ALL OBJECTS IN CLASS: SITE:GROUNDTEMPERATURE:BUILDINGSURFACE =========== + + Site:GroundTemperature:BuildingSurface,19.527,19.502,19.536,19.598,20.002,21.64,22.225,22.375,21.449,20.121,19.802,19.633; + +!- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE =========== + + Site:WaterMainsTemperature, + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature {C} + 28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS =========== + + ScheduleTypeLimits, + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_1_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + temperature; !- Unit Type + + ScheduleTypeLimits, + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + availability; !- Unit Type + + ScheduleTypeLimits, + blocks-3644_office_1_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_1_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_1_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_1_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_2_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_2_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_2_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_2_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3644_office_2_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_1_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_1_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_1_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_1_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_1_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_2_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_2_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_2_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_2_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_2_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_3_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_3_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_3_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_3_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_3_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_4_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_4_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_4_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_4_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_4_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_5_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_5_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_5_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_5_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_5_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_6_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_6_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_6_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_6_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_6_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_7_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_7_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_7_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_7_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_7_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_8_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_8_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_8_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_8_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_8_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_9_Core Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_9_East Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_9_North Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_9_South Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + blocks-3645_office_9_West Perimeter Thermostat Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + activitylevel; !- Unit Type + + ScheduleTypeLimits, + Dimensionless, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous; !- Numeric Type + + ScheduleTypeLimits, + OnOff 1, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + availability; !- Unit Type + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:DAY:INTERVAL =========== + + Schedule:Day:Interval, + Office_Lighting_Schedule_Week_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.05, !- Value Until Time 1 + 02:00, !- Time 2 + 0.05, !- Value Until Time 2 + 03:00, !- Time 3 + 0.05, !- Value Until Time 3 + 04:00, !- Time 4 + 0.05, !- Value Until Time 4 + 05:00, !- Time 5 + 0.05, !- Value Until Time 5 + 06:00, !- Time 6 + 0.1, !- Value Until Time 6 + 07:00, !- Time 7 + 0.1, !- Value Until Time 7 + 08:00, !- Time 8 + 0.3, !- Value Until Time 8 + 09:00, !- Time 9 + 0.9, !- Value Until Time 9 + 10:00, !- Time 10 + 0.9, !- Value Until Time 10 + 11:00, !- Time 11 + 0.9, !- Value Until Time 11 + 12:00, !- Time 12 + 0.9, !- Value Until Time 12 + 13:00, !- Time 13 + 0.9, !- Value Until Time 13 + 14:00, !- Time 14 + 0.9, !- Value Until Time 14 + 15:00, !- Time 15 + 0.9, !- Value Until Time 15 + 16:00, !- Time 16 + 0.9, !- Value Until Time 16 + 17:00, !- Time 17 + 0.9, !- Value Until Time 17 + 18:00, !- Time 18 + 0.5, !- Value Until Time 18 + 19:00, !- Time 19 + 0.3, !- Value Until Time 19 + 20:00, !- Time 20 + 0.3, !- Value Until Time 20 + 21:00, !- Time 21 + 0.2, !- Value Until Time 21 + 22:00, !- Time 22 + 0.2, !- Value Until Time 22 + 23:00, !- Time 23 + 0.1, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Lighting_Schedule_Saturday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.05, !- Value Until Time 1 + 02:00, !- Time 2 + 0.05, !- Value Until Time 2 + 03:00, !- Time 3 + 0.05, !- Value Until Time 3 + 04:00, !- Time 4 + 0.05, !- Value Until Time 4 + 05:00, !- Time 5 + 0.05, !- Value Until Time 5 + 06:00, !- Time 6 + 0.05, !- Value Until Time 6 + 07:00, !- Time 7 + 0.1, !- Value Until Time 7 + 08:00, !- Time 8 + 0.1, !- Value Until Time 8 + 09:00, !- Time 9 + 0.3, !- Value Until Time 9 + 10:00, !- Time 10 + 0.3, !- Value Until Time 10 + 11:00, !- Time 11 + 0.3, !- Value Until Time 11 + 12:00, !- Time 12 + 0.3, !- Value Until Time 12 + 13:00, !- Time 13 + 0.15, !- Value Until Time 13 + 14:00, !- Time 14 + 0.15, !- Value Until Time 14 + 15:00, !- Time 15 + 0.15, !- Value Until Time 15 + 16:00, !- Time 16 + 0.15, !- Value Until Time 16 + 17:00, !- Time 17 + 0.15, !- Value Until Time 17 + 18:00, !- Time 18 + 0.05, !- Value Until Time 18 + 19:00, !- Time 19 + 0.05, !- Value Until Time 19 + 20:00, !- Time 20 + 0.05, !- Value Until Time 20 + 21:00, !- Time 21 + 0.05, !- Value Until Time 21 + 22:00, !- Time 22 + 0.05, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Lighting_Schedule_Sunday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.05, !- Value Until Time 1 + 02:00, !- Time 2 + 0.05, !- Value Until Time 2 + 03:00, !- Time 3 + 0.05, !- Value Until Time 3 + 04:00, !- Time 4 + 0.05, !- Value Until Time 4 + 05:00, !- Time 5 + 0.05, !- Value Until Time 5 + 06:00, !- Time 6 + 0.05, !- Value Until Time 6 + 07:00, !- Time 7 + 0.05, !- Value Until Time 7 + 08:00, !- Time 8 + 0.05, !- Value Until Time 8 + 09:00, !- Time 9 + 0.05, !- Value Until Time 9 + 10:00, !- Time 10 + 0.05, !- Value Until Time 10 + 11:00, !- Time 11 + 0.05, !- Value Until Time 11 + 12:00, !- Time 12 + 0.05, !- Value Until Time 12 + 13:00, !- Time 13 + 0.05, !- Value Until Time 13 + 14:00, !- Time 14 + 0.05, !- Value Until Time 14 + 15:00, !- Time 15 + 0.05, !- Value Until Time 15 + 16:00, !- Time 16 + 0.05, !- Value Until Time 16 + 17:00, !- Time 17 + 0.05, !- Value Until Time 17 + 18:00, !- Time 18 + 0.05, !- Value Until Time 18 + 19:00, !- Time 19 + 0.05, !- Value Until Time 19 + 20:00, !- Time 20 + 0.05, !- Value Until Time 20 + 21:00, !- Time 21 + 0.05, !- Value Until Time 21 + 22:00, !- Time 22 + 0.05, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Lighting_Schedule_Summer_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Lighting_Schedule_Winter_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0, !- Value Until Time 8 + 09:00, !- Time 9 + 0, !- Value Until Time 9 + 10:00, !- Time 10 + 0, !- Value Until Time 10 + 11:00, !- Time 11 + 0, !- Value Until Time 11 + 12:00, !- Time 12 + 0, !- Value Until Time 12 + 13:00, !- Time 13 + 0, !- Value Until Time 13 + 14:00, !- Time 14 + 0, !- Value Until Time 14 + 15:00, !- Time 15 + 0, !- Value Until Time 15 + 16:00, !- Time 16 + 0, !- Value Until Time 16 + 17:00, !- Time 17 + 0, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Heating_Schedule_Week_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 15.5555555555556, !- Value Until Time 1 + 02:00, !- Time 2 + 15.5555555555556, !- Value Until Time 2 + 03:00, !- Time 3 + 15.5555555555556, !- Value Until Time 3 + 04:00, !- Time 4 + 15.5555555555556, !- Value Until Time 4 + 05:00, !- Time 5 + 15.5555555555556, !- Value Until Time 5 + 06:00, !- Time 6 + 17.7777777777778, !- Value Until Time 6 + 07:00, !- Time 7 + 19.4444444444444, !- Value Until Time 7 + 08:00, !- Time 8 + 21.1111111111111, !- Value Until Time 8 + 09:00, !- Time 9 + 21.1111111111111, !- Value Until Time 9 + 10:00, !- Time 10 + 21.1111111111111, !- Value Until Time 10 + 11:00, !- Time 11 + 21.1111111111111, !- Value Until Time 11 + 12:00, !- Time 12 + 21.1111111111111, !- Value Until Time 12 + 13:00, !- Time 13 + 21.1111111111111, !- Value Until Time 13 + 14:00, !- Time 14 + 21.1111111111111, !- Value Until Time 14 + 15:00, !- Time 15 + 21.1111111111111, !- Value Until Time 15 + 16:00, !- Time 16 + 21.1111111111111, !- Value Until Time 16 + 17:00, !- Time 17 + 21.1111111111111, !- Value Until Time 17 + 18:00, !- Time 18 + 21.1111111111111, !- Value Until Time 18 + 19:00, !- Time 19 + 21.1111111111111, !- Value Until Time 19 + 20:00, !- Time 20 + 21.1111111111111, !- Value Until Time 20 + 21:00, !- Time 21 + 21.1111111111111, !- Value Until Time 21 + 22:00, !- Time 22 + 21.1111111111111, !- Value Until Time 22 + 23:00, !- Time 23 + 15.5555555555556, !- Value Until Time 23 + 24:00, !- Time 24 + 15.5555555555556; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Heating_Schedule_Saturday, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 15.5555555555556, !- Value Until Time 1 + 02:00, !- Time 2 + 15.5555555555556, !- Value Until Time 2 + 03:00, !- Time 3 + 15.5555555555556, !- Value Until Time 3 + 04:00, !- Time 4 + 15.5555555555556, !- Value Until Time 4 + 05:00, !- Time 5 + 15.5555555555556, !- Value Until Time 5 + 06:00, !- Time 6 + 17.7777777777778, !- Value Until Time 6 + 07:00, !- Time 7 + 19.4444444444444, !- Value Until Time 7 + 08:00, !- Time 8 + 21.1111111111111, !- Value Until Time 8 + 09:00, !- Time 9 + 21.1111111111111, !- Value Until Time 9 + 10:00, !- Time 10 + 21.1111111111111, !- Value Until Time 10 + 11:00, !- Time 11 + 21.1111111111111, !- Value Until Time 11 + 12:00, !- Time 12 + 21.1111111111111, !- Value Until Time 12 + 13:00, !- Time 13 + 21.1111111111111, !- Value Until Time 13 + 14:00, !- Time 14 + 21.1111111111111, !- Value Until Time 14 + 15:00, !- Time 15 + 21.1111111111111, !- Value Until Time 15 + 16:00, !- Time 16 + 21.1111111111111, !- Value Until Time 16 + 17:00, !- Time 17 + 21.1111111111111, !- Value Until Time 17 + 18:00, !- Time 18 + 15.5555555555556, !- Value Until Time 18 + 19:00, !- Time 19 + 15.5555555555556, !- Value Until Time 19 + 20:00, !- Time 20 + 15.5555555555556, !- Value Until Time 20 + 21:00, !- Time 21 + 15.5555555555556, !- Value Until Time 21 + 22:00, !- Time 22 + 15.5555555555556, !- Value Until Time 22 + 23:00, !- Time 23 + 15.5555555555556, !- Value Until Time 23 + 24:00, !- Time 24 + 15.5555555555556; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Heating_Schedule_Sunday, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 15.5555555555556, !- Value Until Time 1 + 02:00, !- Time 2 + 15.5555555555556, !- Value Until Time 2 + 03:00, !- Time 3 + 15.5555555555556, !- Value Until Time 3 + 04:00, !- Time 4 + 15.5555555555556, !- Value Until Time 4 + 05:00, !- Time 5 + 15.5555555555556, !- Value Until Time 5 + 06:00, !- Time 6 + 15.5555555555556, !- Value Until Time 6 + 07:00, !- Time 7 + 15.5555555555556, !- Value Until Time 7 + 08:00, !- Time 8 + 15.5555555555556, !- Value Until Time 8 + 09:00, !- Time 9 + 15.5555555555556, !- Value Until Time 9 + 10:00, !- Time 10 + 15.5555555555556, !- Value Until Time 10 + 11:00, !- Time 11 + 15.5555555555556, !- Value Until Time 11 + 12:00, !- Time 12 + 15.5555555555556, !- Value Until Time 12 + 13:00, !- Time 13 + 15.5555555555556, !- Value Until Time 13 + 14:00, !- Time 14 + 15.5555555555556, !- Value Until Time 14 + 15:00, !- Time 15 + 15.5555555555556, !- Value Until Time 15 + 16:00, !- Time 16 + 15.5555555555556, !- Value Until Time 16 + 17:00, !- Time 17 + 15.5555555555556, !- Value Until Time 17 + 18:00, !- Time 18 + 15.5555555555556, !- Value Until Time 18 + 19:00, !- Time 19 + 15.5555555555556, !- Value Until Time 19 + 20:00, !- Time 20 + 15.5555555555556, !- Value Until Time 20 + 21:00, !- Time 21 + 15.5555555555556, !- Value Until Time 21 + 22:00, !- Time 22 + 15.5555555555556, !- Value Until Time 22 + 23:00, !- Time 23 + 15.5555555555556, !- Value Until Time 23 + 24:00, !- Time 24 + 15.5555555555556; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Heating_Schedule_Summer_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 15.6, !- Value Until Time 1 + 02:00, !- Time 2 + 15.6, !- Value Until Time 2 + 03:00, !- Time 3 + 15.6, !- Value Until Time 3 + 04:00, !- Time 4 + 15.6, !- Value Until Time 4 + 05:00, !- Time 5 + 15.6, !- Value Until Time 5 + 06:00, !- Time 6 + 15.6, !- Value Until Time 6 + 07:00, !- Time 7 + 15.6, !- Value Until Time 7 + 08:00, !- Time 8 + 15.6, !- Value Until Time 8 + 09:00, !- Time 9 + 15.6, !- Value Until Time 9 + 10:00, !- Time 10 + 15.6, !- Value Until Time 10 + 11:00, !- Time 11 + 15.6, !- Value Until Time 11 + 12:00, !- Time 12 + 15.6, !- Value Until Time 12 + 13:00, !- Time 13 + 15.6, !- Value Until Time 13 + 14:00, !- Time 14 + 15.6, !- Value Until Time 14 + 15:00, !- Time 15 + 15.6, !- Value Until Time 15 + 16:00, !- Time 16 + 15.6, !- Value Until Time 16 + 17:00, !- Time 17 + 15.6, !- Value Until Time 17 + 18:00, !- Time 18 + 15.6, !- Value Until Time 18 + 19:00, !- Time 19 + 15.6, !- Value Until Time 19 + 20:00, !- Time 20 + 15.6, !- Value Until Time 20 + 21:00, !- Time 21 + 15.6, !- Value Until Time 21 + 22:00, !- Time 22 + 15.6, !- Value Until Time 22 + 23:00, !- Time 23 + 15.6, !- Value Until Time 23 + 24:00, !- Time 24 + 15.6; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Heating_Schedule_Winter_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 15.6, !- Value Until Time 1 + 02:00, !- Time 2 + 15.6, !- Value Until Time 2 + 03:00, !- Time 3 + 15.6, !- Value Until Time 3 + 04:00, !- Time 4 + 15.6, !- Value Until Time 4 + 05:00, !- Time 5 + 15.6, !- Value Until Time 5 + 06:00, !- Time 6 + 17.6, !- Value Until Time 6 + 07:00, !- Time 7 + 19.6, !- Value Until Time 7 + 08:00, !- Time 8 + 21, !- Value Until Time 8 + 09:00, !- Time 9 + 21, !- Value Until Time 9 + 10:00, !- Time 10 + 21, !- Value Until Time 10 + 11:00, !- Time 11 + 21, !- Value Until Time 11 + 12:00, !- Time 12 + 21, !- Value Until Time 12 + 13:00, !- Time 13 + 21, !- Value Until Time 13 + 14:00, !- Time 14 + 21, !- Value Until Time 14 + 15:00, !- Time 15 + 21, !- Value Until Time 15 + 16:00, !- Time 16 + 21, !- Value Until Time 16 + 17:00, !- Time 17 + 21, !- Value Until Time 17 + 18:00, !- Time 18 + 21, !- Value Until Time 18 + 19:00, !- Time 19 + 21, !- Value Until Time 19 + 20:00, !- Time 20 + 21, !- Value Until Time 20 + 21:00, !- Time 21 + 21, !- Value Until Time 21 + 22:00, !- Time 22 + 21, !- Value Until Time 22 + 23:00, !- Time 23 + 15.6, !- Value Until Time 23 + 24:00, !- Time 24 + 15.6; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Cooling_Schedule_Week_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 26.6666666666667, !- Value Until Time 1 + 02:00, !- Time 2 + 26.6666666666667, !- Value Until Time 2 + 03:00, !- Time 3 + 26.6666666666667, !- Value Until Time 3 + 04:00, !- Time 4 + 26.6666666666667, !- Value Until Time 4 + 05:00, !- Time 5 + 26.6666666666667, !- Value Until Time 5 + 06:00, !- Time 6 + 25.5555555555556, !- Value Until Time 6 + 07:00, !- Time 7 + 25, !- Value Until Time 7 + 08:00, !- Time 8 + 23.8888888888889, !- Value Until Time 8 + 09:00, !- Time 9 + 23.8888888888889, !- Value Until Time 9 + 10:00, !- Time 10 + 23.8888888888889, !- Value Until Time 10 + 11:00, !- Time 11 + 23.8888888888889, !- Value Until Time 11 + 12:00, !- Time 12 + 23.8888888888889, !- Value Until Time 12 + 13:00, !- Time 13 + 23.8888888888889, !- Value Until Time 13 + 14:00, !- Time 14 + 23.8888888888889, !- Value Until Time 14 + 15:00, !- Time 15 + 23.8888888888889, !- Value Until Time 15 + 16:00, !- Time 16 + 23.8888888888889, !- Value Until Time 16 + 17:00, !- Time 17 + 23.8888888888889, !- Value Until Time 17 + 18:00, !- Time 18 + 23.8888888888889, !- Value Until Time 18 + 19:00, !- Time 19 + 23.8888888888889, !- Value Until Time 19 + 20:00, !- Time 20 + 23.8888888888889, !- Value Until Time 20 + 21:00, !- Time 21 + 23.8888888888889, !- Value Until Time 21 + 22:00, !- Time 22 + 23.8888888888889, !- Value Until Time 22 + 23:00, !- Time 23 + 26.6666666666667, !- Value Until Time 23 + 24:00, !- Time 24 + 26.6666666666667; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Cooling_Schedule_Saturday, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 26.6666666666667, !- Value Until Time 1 + 02:00, !- Time 2 + 26.6666666666667, !- Value Until Time 2 + 03:00, !- Time 3 + 26.6666666666667, !- Value Until Time 3 + 04:00, !- Time 4 + 26.6666666666667, !- Value Until Time 4 + 05:00, !- Time 5 + 26.6666666666667, !- Value Until Time 5 + 06:00, !- Time 6 + 25.5555555555556, !- Value Until Time 6 + 07:00, !- Time 7 + 25, !- Value Until Time 7 + 08:00, !- Time 8 + 23.8888888888889, !- Value Until Time 8 + 09:00, !- Time 9 + 23.8888888888889, !- Value Until Time 9 + 10:00, !- Time 10 + 23.8888888888889, !- Value Until Time 10 + 11:00, !- Time 11 + 23.8888888888889, !- Value Until Time 11 + 12:00, !- Time 12 + 23.8888888888889, !- Value Until Time 12 + 13:00, !- Time 13 + 23.8888888888889, !- Value Until Time 13 + 14:00, !- Time 14 + 23.8888888888889, !- Value Until Time 14 + 15:00, !- Time 15 + 23.8888888888889, !- Value Until Time 15 + 16:00, !- Time 16 + 23.8888888888889, !- Value Until Time 16 + 17:00, !- Time 17 + 23.8888888888889, !- Value Until Time 17 + 18:00, !- Time 18 + 26.6666666666667, !- Value Until Time 18 + 19:00, !- Time 19 + 26.6666666666667, !- Value Until Time 19 + 20:00, !- Time 20 + 26.6666666666667, !- Value Until Time 20 + 21:00, !- Time 21 + 26.6666666666667, !- Value Until Time 21 + 22:00, !- Time 22 + 26.6666666666667, !- Value Until Time 22 + 23:00, !- Time 23 + 26.6666666666667, !- Value Until Time 23 + 24:00, !- Time 24 + 26.6666666666667; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Cooling_Schedule_Sunday, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 26.6666666666667, !- Value Until Time 1 + 02:00, !- Time 2 + 26.6666666666667, !- Value Until Time 2 + 03:00, !- Time 3 + 26.6666666666667, !- Value Until Time 3 + 04:00, !- Time 4 + 26.6666666666667, !- Value Until Time 4 + 05:00, !- Time 5 + 26.6666666666667, !- Value Until Time 5 + 06:00, !- Time 6 + 26.6666666666667, !- Value Until Time 6 + 07:00, !- Time 7 + 26.6666666666667, !- Value Until Time 7 + 08:00, !- Time 8 + 26.6666666666667, !- Value Until Time 8 + 09:00, !- Time 9 + 26.6666666666667, !- Value Until Time 9 + 10:00, !- Time 10 + 26.6666666666667, !- Value Until Time 10 + 11:00, !- Time 11 + 26.6666666666667, !- Value Until Time 11 + 12:00, !- Time 12 + 26.6666666666667, !- Value Until Time 12 + 13:00, !- Time 13 + 26.6666666666667, !- Value Until Time 13 + 14:00, !- Time 14 + 26.6666666666667, !- Value Until Time 14 + 15:00, !- Time 15 + 26.6666666666667, !- Value Until Time 15 + 16:00, !- Time 16 + 26.6666666666667, !- Value Until Time 16 + 17:00, !- Time 17 + 26.6666666666667, !- Value Until Time 17 + 18:00, !- Time 18 + 26.6666666666667, !- Value Until Time 18 + 19:00, !- Time 19 + 26.6666666666667, !- Value Until Time 19 + 20:00, !- Time 20 + 26.6666666666667, !- Value Until Time 20 + 21:00, !- Time 21 + 26.6666666666667, !- Value Until Time 21 + 22:00, !- Time 22 + 26.6666666666667, !- Value Until Time 22 + 23:00, !- Time 23 + 26.6666666666667, !- Value Until Time 23 + 24:00, !- Time 24 + 26.6666666666667; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Cooling_Schedule_Summer_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 26.7, !- Value Until Time 1 + 02:00, !- Time 2 + 26.7, !- Value Until Time 2 + 03:00, !- Time 3 + 26.7, !- Value Until Time 3 + 04:00, !- Time 4 + 26.7, !- Value Until Time 4 + 05:00, !- Time 5 + 26.7, !- Value Until Time 5 + 06:00, !- Time 6 + 25.7, !- Value Until Time 6 + 07:00, !- Time 7 + 25, !- Value Until Time 7 + 08:00, !- Time 8 + 24, !- Value Until Time 8 + 09:00, !- Time 9 + 24, !- Value Until Time 9 + 10:00, !- Time 10 + 24, !- Value Until Time 10 + 11:00, !- Time 11 + 24, !- Value Until Time 11 + 12:00, !- Time 12 + 24, !- Value Until Time 12 + 13:00, !- Time 13 + 24, !- Value Until Time 13 + 14:00, !- Time 14 + 24, !- Value Until Time 14 + 15:00, !- Time 15 + 24, !- Value Until Time 15 + 16:00, !- Time 16 + 24, !- Value Until Time 16 + 17:00, !- Time 17 + 24, !- Value Until Time 17 + 18:00, !- Time 18 + 24, !- Value Until Time 18 + 19:00, !- Time 19 + 24, !- Value Until Time 19 + 20:00, !- Time 20 + 24, !- Value Until Time 20 + 21:00, !- Time 21 + 24, !- Value Until Time 21 + 22:00, !- Time 22 + 24, !- Value Until Time 22 + 23:00, !- Time 23 + 26.7, !- Value Until Time 23 + 24:00, !- Time 24 + 26.7; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Cooling_Schedule_Winter_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 26.7, !- Value Until Time 1 + 02:00, !- Time 2 + 26.7, !- Value Until Time 2 + 03:00, !- Time 3 + 26.7, !- Value Until Time 3 + 04:00, !- Time 4 + 26.7, !- Value Until Time 4 + 05:00, !- Time 5 + 26.7, !- Value Until Time 5 + 06:00, !- Time 6 + 26.7, !- Value Until Time 6 + 07:00, !- Time 7 + 26.7, !- Value Until Time 7 + 08:00, !- Time 8 + 26.7, !- Value Until Time 8 + 09:00, !- Time 9 + 26.7, !- Value Until Time 9 + 10:00, !- Time 10 + 26.7, !- Value Until Time 10 + 11:00, !- Time 11 + 26.7, !- Value Until Time 11 + 12:00, !- Time 12 + 26.7, !- Value Until Time 12 + 13:00, !- Time 13 + 26.7, !- Value Until Time 13 + 14:00, !- Time 14 + 26.7, !- Value Until Time 14 + 15:00, !- Time 15 + 26.7, !- Value Until Time 15 + 16:00, !- Time 16 + 26.7, !- Value Until Time 16 + 17:00, !- Time 17 + 26.7, !- Value Until Time 17 + 18:00, !- Time 18 + 26.7, !- Value Until Time 18 + 19:00, !- Time 19 + 26.7, !- Value Until Time 19 + 20:00, !- Time 20 + 26.7, !- Value Until Time 20 + 21:00, !- Time 21 + 26.7, !- Value Until Time 21 + 22:00, !- Time 22 + 26.7, !- Value Until Time 22 + 23:00, !- Time 23 + 26.7, !- Value Until Time 23 + 24:00, !- Time 24 + 26.7; !- Value Until Time 24 + + Schedule:Day:Interval, + Always_On_Default, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + Always_On_Summer_Design_Day, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + Always_On_Winter_Design_Day, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 1; !- Value Until Time 1 + + Schedule:Day:Interval, + Office_Occupancy_Schedule_Week_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.1, !- Value Until Time 7 + 08:00, !- Time 8 + 0.2, !- Value Until Time 8 + 09:00, !- Time 9 + 0.95, !- Value Until Time 9 + 10:00, !- Time 10 + 0.95, !- Value Until Time 10 + 11:00, !- Time 11 + 0.95, !- Value Until Time 11 + 12:00, !- Time 12 + 0.95, !- Value Until Time 12 + 13:00, !- Time 13 + 0.5, !- Value Until Time 13 + 14:00, !- Time 14 + 0.95, !- Value Until Time 14 + 15:00, !- Time 15 + 0.95, !- Value Until Time 15 + 16:00, !- Time 16 + 0.95, !- Value Until Time 16 + 17:00, !- Time 17 + 0.95, !- Value Until Time 17 + 18:00, !- Time 18 + 0.3, !- Value Until Time 18 + 19:00, !- Time 19 + 0.1, !- Value Until Time 19 + 20:00, !- Time 20 + 0.1, !- Value Until Time 20 + 21:00, !- Time 21 + 0.1, !- Value Until Time 21 + 22:00, !- Time 22 + 0.1, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Occupancy_Schedule_Saturday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.1, !- Value Until Time 7 + 08:00, !- Time 8 + 0.1, !- Value Until Time 8 + 09:00, !- Time 9 + 0.3, !- Value Until Time 9 + 10:00, !- Time 10 + 0.3, !- Value Until Time 10 + 11:00, !- Time 11 + 0.3, !- Value Until Time 11 + 12:00, !- Time 12 + 0.3, !- Value Until Time 12 + 13:00, !- Time 13 + 0.1, !- Value Until Time 13 + 14:00, !- Time 14 + 0.1, !- Value Until Time 14 + 15:00, !- Time 15 + 0.1, !- Value Until Time 15 + 16:00, !- Time 16 + 0.1, !- Value Until Time 16 + 17:00, !- Time 17 + 0.1, !- Value Until Time 17 + 18:00, !- Time 18 + 0.05, !- Value Until Time 18 + 19:00, !- Time 19 + 0.05, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Occupancy_Schedule_Sunday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.05, !- Value Until Time 7 + 08:00, !- Time 8 + 0.05, !- Value Until Time 8 + 09:00, !- Time 9 + 0.05, !- Value Until Time 9 + 10:00, !- Time 10 + 0.05, !- Value Until Time 10 + 11:00, !- Time 11 + 0.05, !- Value Until Time 11 + 12:00, !- Time 12 + 0.05, !- Value Until Time 12 + 13:00, !- Time 13 + 0.05, !- Value Until Time 13 + 14:00, !- Time 14 + 0.05, !- Value Until Time 14 + 15:00, !- Time 15 + 0.05, !- Value Until Time 15 + 16:00, !- Time 16 + 0.05, !- Value Until Time 16 + 17:00, !- Time 17 + 0.05, !- Value Until Time 17 + 18:00, !- Time 18 + 0.05, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Occupancy_Schedule_Summer_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Occupancy_Schedule_Winter_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0, !- Value Until Time 8 + 09:00, !- Time 9 + 0, !- Value Until Time 9 + 10:00, !- Time 10 + 0, !- Value Until Time 10 + 11:00, !- Time 11 + 0, !- Value Until Time 11 + 12:00, !- Time 12 + 0, !- Value Until Time 12 + 13:00, !- Time 13 + 0, !- Value Until Time 13 + 14:00, !- Time 14 + 0, !- Value Until Time 14 + 15:00, !- Time 15 + 0, !- Value Until Time 15 + 16:00, !- Time 16 + 0, !- Value Until Time 16 + 17:00, !- Time 17 + 0, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Hot_Water_Temperature_Default, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 82; !- Value Until Time 1 + + Schedule:Day:Interval, + Hot_Water_Temperature_Summer_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 82; !- Value Until Time 1 + + Schedule:Day:Interval, + Hot_Water_Temperature_Winter_Design_Day, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 82; !- Value Until Time 1 + + Schedule:Day:Interval, + Office_Activity_Schedule_Saturday, !- Name + ActivityLevel, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 132, !- Value Until Time 1 + 02:00, !- Time 2 + 132, !- Value Until Time 2 + 03:00, !- Time 3 + 132, !- Value Until Time 3 + 04:00, !- Time 4 + 132, !- Value Until Time 4 + 05:00, !- Time 5 + 132, !- Value Until Time 5 + 06:00, !- Time 6 + 132, !- Value Until Time 6 + 07:00, !- Time 7 + 132, !- Value Until Time 7 + 08:00, !- Time 8 + 132, !- Value Until Time 8 + 09:00, !- Time 9 + 132, !- Value Until Time 9 + 10:00, !- Time 10 + 132, !- Value Until Time 10 + 11:00, !- Time 11 + 132, !- Value Until Time 11 + 12:00, !- Time 12 + 132, !- Value Until Time 12 + 13:00, !- Time 13 + 132, !- Value Until Time 13 + 14:00, !- Time 14 + 132, !- Value Until Time 14 + 15:00, !- Time 15 + 132, !- Value Until Time 15 + 16:00, !- Time 16 + 132, !- Value Until Time 16 + 17:00, !- Time 17 + 132, !- Value Until Time 17 + 18:00, !- Time 18 + 132, !- Value Until Time 18 + 19:00, !- Time 19 + 132, !- Value Until Time 19 + 20:00, !- Time 20 + 132, !- Value Until Time 20 + 21:00, !- Time 21 + 132, !- Value Until Time 21 + 22:00, !- Time 22 + 132, !- Value Until Time 22 + 23:00, !- Time 23 + 132, !- Value Until Time 23 + 24:00, !- Time 24 + 132; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Activity_Schedule_Summer_Design_Day, !- Name + ActivityLevel, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 132, !- Value Until Time 1 + 02:00, !- Time 2 + 132, !- Value Until Time 2 + 03:00, !- Time 3 + 132, !- Value Until Time 3 + 04:00, !- Time 4 + 132, !- Value Until Time 4 + 05:00, !- Time 5 + 132, !- Value Until Time 5 + 06:00, !- Time 6 + 132, !- Value Until Time 6 + 07:00, !- Time 7 + 132, !- Value Until Time 7 + 08:00, !- Time 8 + 132, !- Value Until Time 8 + 09:00, !- Time 9 + 132, !- Value Until Time 9 + 10:00, !- Time 10 + 132, !- Value Until Time 10 + 11:00, !- Time 11 + 132, !- Value Until Time 11 + 12:00, !- Time 12 + 132, !- Value Until Time 12 + 13:00, !- Time 13 + 132, !- Value Until Time 13 + 14:00, !- Time 14 + 132, !- Value Until Time 14 + 15:00, !- Time 15 + 132, !- Value Until Time 15 + 16:00, !- Time 16 + 132, !- Value Until Time 16 + 17:00, !- Time 17 + 132, !- Value Until Time 17 + 18:00, !- Time 18 + 132, !- Value Until Time 18 + 19:00, !- Time 19 + 132, !- Value Until Time 19 + 20:00, !- Time 20 + 132, !- Value Until Time 20 + 21:00, !- Time 21 + 132, !- Value Until Time 21 + 22:00, !- Time 22 + 132, !- Value Until Time 22 + 23:00, !- Time 23 + 132, !- Value Until Time 23 + 24:00, !- Time 24 + 132; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Activity_Schedule_Sunday, !- Name + ActivityLevel, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 132, !- Value Until Time 1 + 02:00, !- Time 2 + 132, !- Value Until Time 2 + 03:00, !- Time 3 + 132, !- Value Until Time 3 + 04:00, !- Time 4 + 132, !- Value Until Time 4 + 05:00, !- Time 5 + 132, !- Value Until Time 5 + 06:00, !- Time 6 + 132, !- Value Until Time 6 + 07:00, !- Time 7 + 132, !- Value Until Time 7 + 08:00, !- Time 8 + 132, !- Value Until Time 8 + 09:00, !- Time 9 + 132, !- Value Until Time 9 + 10:00, !- Time 10 + 132, !- Value Until Time 10 + 11:00, !- Time 11 + 132, !- Value Until Time 11 + 12:00, !- Time 12 + 132, !- Value Until Time 12 + 13:00, !- Time 13 + 132, !- Value Until Time 13 + 14:00, !- Time 14 + 132, !- Value Until Time 14 + 15:00, !- Time 15 + 132, !- Value Until Time 15 + 16:00, !- Time 16 + 132, !- Value Until Time 16 + 17:00, !- Time 17 + 132, !- Value Until Time 17 + 18:00, !- Time 18 + 132, !- Value Until Time 18 + 19:00, !- Time 19 + 132, !- Value Until Time 19 + 20:00, !- Time 20 + 132, !- Value Until Time 20 + 21:00, !- Time 21 + 132, !- Value Until Time 21 + 22:00, !- Time 22 + 132, !- Value Until Time 22 + 23:00, !- Time 23 + 132, !- Value Until Time 23 + 24:00, !- Time 24 + 132; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Activity_Schedule_Week_Day, !- Name + ActivityLevel, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 132, !- Value Until Time 1 + 02:00, !- Time 2 + 132, !- Value Until Time 2 + 03:00, !- Time 3 + 132, !- Value Until Time 3 + 04:00, !- Time 4 + 132, !- Value Until Time 4 + 05:00, !- Time 5 + 132, !- Value Until Time 5 + 06:00, !- Time 6 + 132, !- Value Until Time 6 + 07:00, !- Time 7 + 132, !- Value Until Time 7 + 08:00, !- Time 8 + 132, !- Value Until Time 8 + 09:00, !- Time 9 + 132, !- Value Until Time 9 + 10:00, !- Time 10 + 132, !- Value Until Time 10 + 11:00, !- Time 11 + 132, !- Value Until Time 11 + 12:00, !- Time 12 + 132, !- Value Until Time 12 + 13:00, !- Time 13 + 132, !- Value Until Time 13 + 14:00, !- Time 14 + 132, !- Value Until Time 14 + 15:00, !- Time 15 + 132, !- Value Until Time 15 + 16:00, !- Time 16 + 132, !- Value Until Time 16 + 17:00, !- Time 17 + 132, !- Value Until Time 17 + 18:00, !- Time 18 + 132, !- Value Until Time 18 + 19:00, !- Time 19 + 132, !- Value Until Time 19 + 20:00, !- Time 20 + 132, !- Value Until Time 20 + 21:00, !- Time 21 + 132, !- Value Until Time 21 + 22:00, !- Time 22 + 132, !- Value Until Time 22 + 23:00, !- Time 23 + 132, !- Value Until Time 23 + 24:00, !- Time 24 + 132; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Activity_Schedule_Winter_Design_Day, !- Name + ActivityLevel, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 132, !- Value Until Time 1 + 02:00, !- Time 2 + 132, !- Value Until Time 2 + 03:00, !- Time 3 + 132, !- Value Until Time 3 + 04:00, !- Time 4 + 132, !- Value Until Time 4 + 05:00, !- Time 5 + 132, !- Value Until Time 5 + 06:00, !- Time 6 + 132, !- Value Until Time 6 + 07:00, !- Time 7 + 132, !- Value Until Time 7 + 08:00, !- Time 8 + 132, !- Value Until Time 8 + 09:00, !- Time 9 + 132, !- Value Until Time 9 + 10:00, !- Time 10 + 132, !- Value Until Time 10 + 11:00, !- Time 11 + 132, !- Value Until Time 11 + 12:00, !- Time 12 + 132, !- Value Until Time 12 + 13:00, !- Time 13 + 132, !- Value Until Time 13 + 14:00, !- Time 14 + 132, !- Value Until Time 14 + 15:00, !- Time 15 + 132, !- Value Until Time 15 + 16:00, !- Time 16 + 132, !- Value Until Time 16 + 17:00, !- Time 17 + 132, !- Value Until Time 17 + 18:00, !- Time 18 + 132, !- Value Until Time 18 + 19:00, !- Time 19 + 132, !- Value Until Time 19 + 20:00, !- Time 20 + 132, !- Value Until Time 20 + 21:00, !- Time 21 + 132, !- Value Until Time 21 + 22:00, !- Time 22 + 132, !- Value Until Time 22 + 23:00, !- Time 23 + 132, !- Value Until Time 23 + 24:00, !- Time 24 + 132; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Elevator_Schedule_Saturday, !- Name + Dimensionless, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0.09, !- Value Until Time 8 + 09:00, !- Time 9 + 0.21, !- Value Until Time 9 + 10:00, !- Time 10 + 0.56, !- Value Until Time 10 + 11:00, !- Time 11 + 0.66, !- Value Until Time 11 + 12:00, !- Time 12 + 0.68, !- Value Until Time 12 + 13:00, !- Time 13 + 0.68, !- Value Until Time 13 + 14:00, !- Time 14 + 0.69, !- Value Until Time 14 + 15:00, !- Time 15 + 0.7, !- Value Until Time 15 + 16:00, !- Time 16 + 0.69, !- Value Until Time 16 + 17:00, !- Time 17 + 0.66, !- Value Until Time 17 + 18:00, !- Time 18 + 0.58, !- Value Until Time 18 + 19:00, !- Time 19 + 0.47, !- Value Until Time 19 + 20:00, !- Time 20 + 0.43, !- Value Until Time 20 + 21:00, !- Time 21 + 0.43, !- Value Until Time 21 + 22:00, !- Time 22 + 0.08, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Elevator_Schedule_Summer_Design_Day, !- Name + Dimensionless, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Office_Elevator_Schedule_Sunday, !- Name + Dimensionless, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0, !- Value Until Time 8 + 09:00, !- Time 9 + 0, !- Value Until Time 9 + 10:00, !- Time 10 + 0.11, !- Value Until Time 10 + 11:00, !- Time 11 + 0.13, !- Value Until Time 11 + 12:00, !- Time 12 + 0.35, !- Value Until Time 12 + 13:00, !- Time 13 + 0.37, !- Value Until Time 13 + 14:00, !- Time 14 + 0.37, !- Value Until Time 14 + 15:00, !- Time 15 + 0.39, !- Value Until Time 15 + 16:00, !- Time 16 + 0.41, !- Value Until Time 16 + 17:00, !- Time 17 + 0.38, !- Value Until Time 17 + 18:00, !- Time 18 + 0.34, !- Value Until Time 18 + 19:00, !- Time 19 + 0.03, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Elevator_Schedule_Week_Day, !- Name + Dimensionless, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0.12, !- Value Until Time 8 + 09:00, !- Time 9 + 0.22, !- Value Until Time 9 + 10:00, !- Time 10 + 0.64, !- Value Until Time 10 + 11:00, !- Time 11 + 0.74, !- Value Until Time 11 + 12:00, !- Time 12 + 0.68, !- Value Until Time 12 + 13:00, !- Time 13 + 0.68, !- Value Until Time 13 + 14:00, !- Time 14 + 0.71, !- Value Until Time 14 + 15:00, !- Time 15 + 0.72, !- Value Until Time 15 + 16:00, !- Time 16 + 0.72, !- Value Until Time 16 + 17:00, !- Time 17 + 0.73, !- Value Until Time 17 + 18:00, !- Time 18 + 0.68, !- Value Until Time 18 + 19:00, !- Time 19 + 0.68, !- Value Until Time 19 + 20:00, !- Time 20 + 0.58, !- Value Until Time 20 + 21:00, !- Time 21 + 0.54, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Elevator_Schedule_Winter_Design_Day, !- Name + Dimensionless, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 0; !- Value Until Time 1 + + Schedule:Day:Interval, + Office_Hvac_Schedule_Saturday 1, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Hvac_Schedule_Summer_Design_Day 1, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Hvac_Schedule_Sunday 1, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0, !- Value Until Time 8 + 09:00, !- Time 9 + 0, !- Value Until Time 9 + 10:00, !- Time 10 + 0, !- Value Until Time 10 + 11:00, !- Time 11 + 0, !- Value Until Time 11 + 12:00, !- Time 12 + 0, !- Value Until Time 12 + 13:00, !- Time 13 + 0, !- Value Until Time 13 + 14:00, !- Time 14 + 0, !- Value Until Time 14 + 15:00, !- Time 15 + 0, !- Value Until Time 15 + 16:00, !- Time 16 + 0, !- Value Until Time 16 + 17:00, !- Time 17 + 0, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Hvac_Schedule_Week_Day 1, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Hvac_Schedule_Winter_Design_Day 1, !- Name + OnOff, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Infiltration_Schedule_Saturday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 0.25, !- Value Until Time 6 + 07:00, !- Time 7 + 0.25, !- Value Until Time 7 + 08:00, !- Time 8 + 0.25, !- Value Until Time 8 + 09:00, !- Time 9 + 0.25, !- Value Until Time 9 + 10:00, !- Time 10 + 0.25, !- Value Until Time 10 + 11:00, !- Time 11 + 0.25, !- Value Until Time 11 + 12:00, !- Time 12 + 0.25, !- Value Until Time 12 + 13:00, !- Time 13 + 0.25, !- Value Until Time 13 + 14:00, !- Time 14 + 0.25, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25, !- Value Until Time 15 + 16:00, !- Time 16 + 0.25, !- Value Until Time 16 + 17:00, !- Time 17 + 0.25, !- Value Until Time 17 + 18:00, !- Time 18 + 0.25, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Infiltration_Schedule_Summer_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 0.25, !- Value Until Time 6 + 07:00, !- Time 7 + 0.25, !- Value Until Time 7 + 08:00, !- Time 8 + 0.25, !- Value Until Time 8 + 09:00, !- Time 9 + 0.25, !- Value Until Time 9 + 10:00, !- Time 10 + 0.25, !- Value Until Time 10 + 11:00, !- Time 11 + 0.25, !- Value Until Time 11 + 12:00, !- Time 12 + 0.25, !- Value Until Time 12 + 13:00, !- Time 13 + 0.25, !- Value Until Time 13 + 14:00, !- Time 14 + 0.25, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25, !- Value Until Time 15 + 16:00, !- Time 16 + 0.25, !- Value Until Time 16 + 17:00, !- Time 17 + 0.25, !- Value Until Time 17 + 18:00, !- Time 18 + 0.25, !- Value Until Time 18 + 19:00, !- Time 19 + 0.25, !- Value Until Time 19 + 20:00, !- Time 20 + 0.25, !- Value Until Time 20 + 21:00, !- Time 21 + 0.25, !- Value Until Time 21 + 22:00, !- Time 22 + 0.25, !- Value Until Time 22 + 23:00, !- Time 23 + 0.25, !- Value Until Time 23 + 24:00, !- Time 24 + 0.25; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Infiltration_Schedule_Sunday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Infiltration_Schedule_Week_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 0.25, !- Value Until Time 6 + 07:00, !- Time 7 + 0.25, !- Value Until Time 7 + 08:00, !- Time 8 + 0.25, !- Value Until Time 8 + 09:00, !- Time 9 + 0.25, !- Value Until Time 9 + 10:00, !- Time 10 + 0.25, !- Value Until Time 10 + 11:00, !- Time 11 + 0.25, !- Value Until Time 11 + 12:00, !- Time 12 + 0.25, !- Value Until Time 12 + 13:00, !- Time 13 + 0.25, !- Value Until Time 13 + 14:00, !- Time 14 + 0.25, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25, !- Value Until Time 15 + 16:00, !- Time 16 + 0.25, !- Value Until Time 16 + 17:00, !- Time 17 + 0.25, !- Value Until Time 17 + 18:00, !- Time 18 + 0.25, !- Value Until Time 18 + 19:00, !- Time 19 + 0.25, !- Value Until Time 19 + 20:00, !- Time 20 + 0.25, !- Value Until Time 20 + 21:00, !- Time 21 + 0.25, !- Value Until Time 21 + 22:00, !- Time 22 + 0.25, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Infiltration_Schedule_Winter_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 0.25, !- Value Until Time 6 + 07:00, !- Time 7 + 0.25, !- Value Until Time 7 + 08:00, !- Time 8 + 0.25, !- Value Until Time 8 + 09:00, !- Time 9 + 0.25, !- Value Until Time 9 + 10:00, !- Time 10 + 0.25, !- Value Until Time 10 + 11:00, !- Time 11 + 0.25, !- Value Until Time 11 + 12:00, !- Time 12 + 0.25, !- Value Until Time 12 + 13:00, !- Time 13 + 0.25, !- Value Until Time 13 + 14:00, !- Time 14 + 0.25, !- Value Until Time 14 + 15:00, !- Time 15 + 0.25, !- Value Until Time 15 + 16:00, !- Time 16 + 0.25, !- Value Until Time 16 + 17:00, !- Time 17 + 0.25, !- Value Until Time 17 + 18:00, !- Time 18 + 0.25, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Plug_And_Process_Schedule_Saturday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.3, !- Value Until Time 1 + 02:00, !- Time 2 + 0.3, !- Value Until Time 2 + 03:00, !- Time 3 + 0.3, !- Value Until Time 3 + 04:00, !- Time 4 + 0.3, !- Value Until Time 4 + 05:00, !- Time 5 + 0.3, !- Value Until Time 5 + 06:00, !- Time 6 + 0.3, !- Value Until Time 6 + 07:00, !- Time 7 + 0.4, !- Value Until Time 7 + 08:00, !- Time 8 + 0.4, !- Value Until Time 8 + 09:00, !- Time 9 + 0.5, !- Value Until Time 9 + 10:00, !- Time 10 + 0.5, !- Value Until Time 10 + 11:00, !- Time 11 + 0.5, !- Value Until Time 11 + 12:00, !- Time 12 + 0.5, !- Value Until Time 12 + 13:00, !- Time 13 + 0.35, !- Value Until Time 13 + 14:00, !- Time 14 + 0.35, !- Value Until Time 14 + 15:00, !- Time 15 + 0.35, !- Value Until Time 15 + 16:00, !- Time 16 + 0.35, !- Value Until Time 16 + 17:00, !- Time 17 + 0.35, !- Value Until Time 17 + 18:00, !- Time 18 + 0.3, !- Value Until Time 18 + 19:00, !- Time 19 + 0.3, !- Value Until Time 19 + 20:00, !- Time 20 + 0.3, !- Value Until Time 20 + 21:00, !- Time 21 + 0.3, !- Value Until Time 21 + 22:00, !- Time 22 + 0.3, !- Value Until Time 22 + 23:00, !- Time 23 + 0.3, !- Value Until Time 23 + 24:00, !- Time 24 + 0.3; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Plug_And_Process_Schedule_Summer_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 1, !- Value Until Time 1 + 02:00, !- Time 2 + 1, !- Value Until Time 2 + 03:00, !- Time 3 + 1, !- Value Until Time 3 + 04:00, !- Time 4 + 1, !- Value Until Time 4 + 05:00, !- Time 5 + 1, !- Value Until Time 5 + 06:00, !- Time 6 + 1, !- Value Until Time 6 + 07:00, !- Time 7 + 1, !- Value Until Time 7 + 08:00, !- Time 8 + 1, !- Value Until Time 8 + 09:00, !- Time 9 + 1, !- Value Until Time 9 + 10:00, !- Time 10 + 1, !- Value Until Time 10 + 11:00, !- Time 11 + 1, !- Value Until Time 11 + 12:00, !- Time 12 + 1, !- Value Until Time 12 + 13:00, !- Time 13 + 1, !- Value Until Time 13 + 14:00, !- Time 14 + 1, !- Value Until Time 14 + 15:00, !- Time 15 + 1, !- Value Until Time 15 + 16:00, !- Time 16 + 1, !- Value Until Time 16 + 17:00, !- Time 17 + 1, !- Value Until Time 17 + 18:00, !- Time 18 + 1, !- Value Until Time 18 + 19:00, !- Time 19 + 1, !- Value Until Time 19 + 20:00, !- Time 20 + 1, !- Value Until Time 20 + 21:00, !- Time 21 + 1, !- Value Until Time 21 + 22:00, !- Time 22 + 1, !- Value Until Time 22 + 23:00, !- Time 23 + 1, !- Value Until Time 23 + 24:00, !- Time 24 + 1; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Plug_And_Process_Schedule_Sunday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.3, !- Value Until Time 1 + 02:00, !- Time 2 + 0.3, !- Value Until Time 2 + 03:00, !- Time 3 + 0.3, !- Value Until Time 3 + 04:00, !- Time 4 + 0.3, !- Value Until Time 4 + 05:00, !- Time 5 + 0.3, !- Value Until Time 5 + 06:00, !- Time 6 + 0.3, !- Value Until Time 6 + 07:00, !- Time 7 + 0.3, !- Value Until Time 7 + 08:00, !- Time 8 + 0.3, !- Value Until Time 8 + 09:00, !- Time 9 + 0.3, !- Value Until Time 9 + 10:00, !- Time 10 + 0.3, !- Value Until Time 10 + 11:00, !- Time 11 + 0.3, !- Value Until Time 11 + 12:00, !- Time 12 + 0.3, !- Value Until Time 12 + 13:00, !- Time 13 + 0.3, !- Value Until Time 13 + 14:00, !- Time 14 + 0.3, !- Value Until Time 14 + 15:00, !- Time 15 + 0.3, !- Value Until Time 15 + 16:00, !- Time 16 + 0.3, !- Value Until Time 16 + 17:00, !- Time 17 + 0.3, !- Value Until Time 17 + 18:00, !- Time 18 + 0.3, !- Value Until Time 18 + 19:00, !- Time 19 + 0.3, !- Value Until Time 19 + 20:00, !- Time 20 + 0.3, !- Value Until Time 20 + 21:00, !- Time 21 + 0.3, !- Value Until Time 21 + 22:00, !- Time 22 + 0.3, !- Value Until Time 22 + 23:00, !- Time 23 + 0.3, !- Value Until Time 23 + 24:00, !- Time 24 + 0.3; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Plug_And_Process_Schedule_Week_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0.4, !- Value Until Time 1 + 02:00, !- Time 2 + 0.4, !- Value Until Time 2 + 03:00, !- Time 3 + 0.4, !- Value Until Time 3 + 04:00, !- Time 4 + 0.4, !- Value Until Time 4 + 05:00, !- Time 5 + 0.4, !- Value Until Time 5 + 06:00, !- Time 6 + 0.4, !- Value Until Time 6 + 07:00, !- Time 7 + 0.4, !- Value Until Time 7 + 08:00, !- Time 8 + 0.4, !- Value Until Time 8 + 09:00, !- Time 9 + 0.9, !- Value Until Time 9 + 10:00, !- Time 10 + 0.9, !- Value Until Time 10 + 11:00, !- Time 11 + 0.9, !- Value Until Time 11 + 12:00, !- Time 12 + 0.9, !- Value Until Time 12 + 13:00, !- Time 13 + 0.8, !- Value Until Time 13 + 14:00, !- Time 14 + 0.9, !- Value Until Time 14 + 15:00, !- Time 15 + 0.9, !- Value Until Time 15 + 16:00, !- Time 16 + 0.9, !- Value Until Time 16 + 17:00, !- Time 17 + 0.9, !- Value Until Time 17 + 18:00, !- Time 18 + 0.5, !- Value Until Time 18 + 19:00, !- Time 19 + 0.4, !- Value Until Time 19 + 20:00, !- Time 20 + 0.4, !- Value Until Time 20 + 21:00, !- Time 21 + 0.4, !- Value Until Time 21 + 22:00, !- Time 22 + 0.4, !- Value Until Time 22 + 23:00, !- Time 23 + 0.4, !- Value Until Time 23 + 24:00, !- Time 24 + 0.4; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Plug_And_Process_Schedule_Winter_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0, !- Value Until Time 7 + 08:00, !- Time 8 + 0, !- Value Until Time 8 + 09:00, !- Time 9 + 0, !- Value Until Time 9 + 10:00, !- Time 10 + 0, !- Value Until Time 10 + 11:00, !- Time 11 + 0, !- Value Until Time 11 + 12:00, !- Time 12 + 0, !- Value Until Time 12 + 13:00, !- Time 13 + 0, !- Value Until Time 13 + 14:00, !- Time 14 + 0, !- Value Until Time 14 + 15:00, !- Time 15 + 0, !- Value Until Time 15 + 16:00, !- Time 16 + 0, !- Value Until Time 16 + 17:00, !- Time 17 + 0, !- Value Until Time 17 + 18:00, !- Time 18 + 0, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Service_Water_Heating_Schedule_Saturday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.07, !- Value Until Time 7 + 08:00, !- Time 8 + 0.11, !- Value Until Time 8 + 09:00, !- Time 9 + 0.15, !- Value Until Time 9 + 10:00, !- Time 10 + 0.21, !- Value Until Time 10 + 11:00, !- Time 11 + 0.19, !- Value Until Time 11 + 12:00, !- Time 12 + 0.23, !- Value Until Time 12 + 13:00, !- Time 13 + 0.2, !- Value Until Time 13 + 14:00, !- Time 14 + 0.19, !- Value Until Time 14 + 15:00, !- Time 15 + 0.15, !- Value Until Time 15 + 16:00, !- Time 16 + 0.13, !- Value Until Time 16 + 17:00, !- Time 17 + 0.14, !- Value Until Time 17 + 18:00, !- Time 18 + 0.07, !- Value Until Time 18 + 19:00, !- Time 19 + 0.07, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Service_Water_Heating_Schedule_Summer_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.07, !- Value Until Time 7 + 08:00, !- Time 8 + 0.19, !- Value Until Time 8 + 09:00, !- Time 9 + 0.35, !- Value Until Time 9 + 10:00, !- Time 10 + 0.38, !- Value Until Time 10 + 11:00, !- Time 11 + 0.39, !- Value Until Time 11 + 12:00, !- Time 12 + 0.47, !- Value Until Time 12 + 13:00, !- Time 13 + 0.57, !- Value Until Time 13 + 14:00, !- Time 14 + 0.54, !- Value Until Time 14 + 15:00, !- Time 15 + 0.34, !- Value Until Time 15 + 16:00, !- Time 16 + 0.33, !- Value Until Time 16 + 17:00, !- Time 17 + 0.44, !- Value Until Time 17 + 18:00, !- Time 18 + 0.26, !- Value Until Time 18 + 19:00, !- Time 19 + 0.21, !- Value Until Time 19 + 20:00, !- Time 20 + 0.15, !- Value Until Time 20 + 21:00, !- Time 21 + 0.17, !- Value Until Time 21 + 22:00, !- Time 22 + 0.08, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Service_Water_Heating_Schedule_Sunday, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.04, !- Value Until Time 7 + 08:00, !- Time 8 + 0.04, !- Value Until Time 8 + 09:00, !- Time 9 + 0.04, !- Value Until Time 9 + 10:00, !- Time 10 + 0.04, !- Value Until Time 10 + 11:00, !- Time 11 + 0.04, !- Value Until Time 11 + 12:00, !- Time 12 + 0.06, !- Value Until Time 12 + 13:00, !- Time 13 + 0.06, !- Value Until Time 13 + 14:00, !- Time 14 + 0.09, !- Value Until Time 14 + 15:00, !- Time 15 + 0.06, !- Value Until Time 15 + 16:00, !- Time 16 + 0.04, !- Value Until Time 16 + 17:00, !- Time 17 + 0.04, !- Value Until Time 17 + 18:00, !- Time 18 + 0.04, !- Value Until Time 18 + 19:00, !- Time 19 + 0, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Service_Water_Heating_Schedule_Week_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.07, !- Value Until Time 7 + 08:00, !- Time 8 + 0.19, !- Value Until Time 8 + 09:00, !- Time 9 + 0.35, !- Value Until Time 9 + 10:00, !- Time 10 + 0.38, !- Value Until Time 10 + 11:00, !- Time 11 + 0.39, !- Value Until Time 11 + 12:00, !- Time 12 + 0.47, !- Value Until Time 12 + 13:00, !- Time 13 + 0.57, !- Value Until Time 13 + 14:00, !- Time 14 + 0.54, !- Value Until Time 14 + 15:00, !- Time 15 + 0.34, !- Value Until Time 15 + 16:00, !- Time 16 + 0.33, !- Value Until Time 16 + 17:00, !- Time 17 + 0.44, !- Value Until Time 17 + 18:00, !- Time 18 + 0.26, !- Value Until Time 18 + 19:00, !- Time 19 + 0.21, !- Value Until Time 19 + 20:00, !- Time 20 + 0.15, !- Value Until Time 20 + 21:00, !- Time 21 + 0.17, !- Value Until Time 21 + 22:00, !- Time 22 + 0.08, !- Value Until Time 22 + 23:00, !- Time 23 + 0.05, !- Value Until Time 23 + 24:00, !- Time 24 + 0.05; !- Value Until Time 24 + + Schedule:Day:Interval, + Office_Service_Water_Heating_Schedule_Winter_Design_Day, !- Name + Fractional, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 01:00, !- Time 1 + 0, !- Value Until Time 1 + 02:00, !- Time 2 + 0, !- Value Until Time 2 + 03:00, !- Time 3 + 0, !- Value Until Time 3 + 04:00, !- Time 4 + 0, !- Value Until Time 4 + 05:00, !- Time 5 + 0, !- Value Until Time 5 + 06:00, !- Time 6 + 0, !- Value Until Time 6 + 07:00, !- Time 7 + 0.07, !- Value Until Time 7 + 08:00, !- Time 8 + 0.11, !- Value Until Time 8 + 09:00, !- Time 9 + 0.15, !- Value Until Time 9 + 10:00, !- Time 10 + 0.21, !- Value Until Time 10 + 11:00, !- Time 11 + 0.19, !- Value Until Time 11 + 12:00, !- Time 12 + 0.23, !- Value Until Time 12 + 13:00, !- Time 13 + 0.2, !- Value Until Time 13 + 14:00, !- Time 14 + 0.19, !- Value Until Time 14 + 15:00, !- Time 15 + 0.15, !- Value Until Time 15 + 16:00, !- Time 16 + 0.13, !- Value Until Time 16 + 17:00, !- Time 17 + 0.14, !- Value Until Time 17 + 18:00, !- Time 18 + 0.07, !- Value Until Time 18 + 19:00, !- Time 19 + 0.07, !- Value Until Time 19 + 20:00, !- Time 20 + 0, !- Value Until Time 20 + 21:00, !- Time 21 + 0, !- Value Until Time 21 + 22:00, !- Time 22 + 0, !- Value Until Time 22 + 23:00, !- Time 23 + 0, !- Value Until Time 23 + 24:00, !- Time 24 + 0; !- Value Until Time 24 + + Schedule:Day:Interval, + Secondary CHW Temp Default, !- Name + Temperature, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24:00, !- Time 1 + 6.66666666666669; !- Value Until Time 1 + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:WEEK:DAILY =========== + + Schedule:Week:Daily, + Office_Lighting_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Lighting_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Lighting_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Lighting_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Lighting_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Lighting_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Lighting_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Lighting_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Lighting_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Lighting_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Lighting_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Lighting_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Lighting_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Heating_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Heating_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Heating_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Heating_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Heating_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Heating_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Heating_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Heating_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Heating_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Heating_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Heating_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Heating_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Heating_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Cooling_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Cooling_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Cooling_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Cooling_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Cooling_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Cooling_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Cooling_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Cooling_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Cooling_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Cooling_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Cooling_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Cooling_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Cooling_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Always_On Week Rule - Jan1-Dec31, !- Name + Always_On_Default, !- Sunday Schedule:Day Name + Always_On_Default, !- Monday Schedule:Day Name + Always_On_Default, !- Tuesday Schedule:Day Name + Always_On_Default, !- Wednesday Schedule:Day Name + Always_On_Default, !- Thursday Schedule:Day Name + Always_On_Default, !- Friday Schedule:Day Name + Always_On_Default, !- Saturday Schedule:Day Name + Always_On_Default, !- Holiday Schedule:Day Name + Always_On_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Always_On_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Always_On_Default, !- CustomDay1 Schedule:Day Name + Always_On_Default; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Occupancy_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Occupancy_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Occupancy_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Occupancy_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Occupancy_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Occupancy_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Occupancy_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Occupancy_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Occupancy_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Occupancy_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Occupancy_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Occupancy_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Occupancy_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + AirLoop air_handlers-2963_Sched_Ruleset Week Rule - Jan1-Jan3, !- Name + Office_Hvac_Schedule_Week_Day 1, !- Sunday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Monday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Tuesday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Wednesday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Thursday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Friday Schedule:Day Name + Office_Hvac_Schedule_Saturday 1, !- Saturday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Holiday Schedule:Day Name + Office_Hvac_Schedule_Summer_Design_Day 1, !- SummerDesignDay Schedule:Day Name + Office_Hvac_Schedule_Winter_Design_Day 1, !- WinterDesignDay Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- CustomDay1 Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + AirLoop air_handlers-2963_Sched_Ruleset Week Rule - Jan4-Dec31, !- Name + Office_Hvac_Schedule_Sunday 1, !- Sunday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Monday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Tuesday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Wednesday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Thursday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Friday Schedule:Day Name + Office_Hvac_Schedule_Saturday 1, !- Saturday Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- Holiday Schedule:Day Name + Office_Hvac_Schedule_Summer_Design_Day 1, !- SummerDesignDay Schedule:Day Name + Office_Hvac_Schedule_Winter_Design_Day 1, !- WinterDesignDay Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1, !- CustomDay1 Schedule:Day Name + Office_Hvac_Schedule_Week_Day 1; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Hot_Water_Temperature Week Rule - Jan1-Dec31, !- Name + Hot_Water_Temperature_Default, !- Sunday Schedule:Day Name + Hot_Water_Temperature_Default, !- Monday Schedule:Day Name + Hot_Water_Temperature_Default, !- Tuesday Schedule:Day Name + Hot_Water_Temperature_Default, !- Wednesday Schedule:Day Name + Hot_Water_Temperature_Default, !- Thursday Schedule:Day Name + Hot_Water_Temperature_Default, !- Friday Schedule:Day Name + Hot_Water_Temperature_Default, !- Saturday Schedule:Day Name + Hot_Water_Temperature_Default, !- Holiday Schedule:Day Name + Hot_Water_Temperature_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Hot_Water_Temperature_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Hot_Water_Temperature_Default, !- CustomDay1 Schedule:Day Name + Hot_Water_Temperature_Default; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Activity_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Activity_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Activity_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Activity_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Activity_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Activity_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Activity_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Activity_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Activity_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Activity_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Activity_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Activity_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Activity_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Elevator_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Elevator_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Elevator_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Elevator_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Elevator_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Elevator_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Elevator_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Elevator_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Elevator_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Elevator_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Elevator_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Elevator_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Elevator_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Infiltration_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Infiltration_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Infiltration_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Infiltration_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Infiltration_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Infiltration_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Infiltration_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Infiltration_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Infiltration_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Infiltration_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Infiltration_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Infiltration_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Infiltration_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Plug_And_Process_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Plug_And_Process_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Plug_And_Process_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Plug_And_Process_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Plug_And_Process_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Plug_And_Process_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Plug_And_Process_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Plug_And_Process_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Plug_And_Process_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Plug_And_Process_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Plug_And_Process_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Service_Water_Heating_Schedule Week Rule - Jan1-Jan3, !- Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Sunday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Service_Water_Heating_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Office_Service_Water_Heating_Schedule Week Rule - Jan4-Dec31, !- Name + Office_Service_Water_Heating_Schedule_Sunday, !- Sunday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Monday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Tuesday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Wednesday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Thursday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Friday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Saturday, !- Saturday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- Holiday Schedule:Day Name + Office_Service_Water_Heating_Schedule_Summer_Design_Day, !- SummerDesignDay Schedule:Day Name + Office_Service_Water_Heating_Schedule_Winter_Design_Day, !- WinterDesignDay Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day, !- CustomDay1 Schedule:Day Name + Office_Service_Water_Heating_Schedule_Week_Day; !- CustomDay2 Schedule:Day Name + + Schedule:Week:Daily, + Secondary CHW Temp - 44F Week Rule - Jan1-Dec31, !- Name + Secondary CHW Temp Default, !- Sunday Schedule:Day Name + Secondary CHW Temp Default, !- Monday Schedule:Day Name + Secondary CHW Temp Default, !- Tuesday Schedule:Day Name + Secondary CHW Temp Default, !- Wednesday Schedule:Day Name + Secondary CHW Temp Default, !- Thursday Schedule:Day Name + Secondary CHW Temp Default, !- Friday Schedule:Day Name + Secondary CHW Temp Default, !- Saturday Schedule:Day Name + Secondary CHW Temp Default, !- Holiday Schedule:Day Name + Secondary CHW Temp Default, !- SummerDesignDay Schedule:Day Name + Secondary CHW Temp Default, !- WinterDesignDay Schedule:Day Name + Secondary CHW Temp Default, !- CustomDay1 Schedule:Day Name + Secondary CHW Temp Default; !- CustomDay2 Schedule:Day Name + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:YEAR =========== + + Schedule:Year, + Office_Lighting_Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Office_Lighting_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Lighting_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Heating_Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Office_Heating_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Heating_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Cooling_Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Office_Cooling_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Cooling_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Always_On, !- Name + OnOff, !- Schedule Type Limits Name + Always_On Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Year, + Office_Occupancy_Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Office_Occupancy_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Occupancy_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + AirLoop air_handlers-2963_Sched_Ruleset, !- Name + OnOff, !- Schedule Type Limits Name + AirLoop air_handlers-2963_Sched_Ruleset Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + AirLoop air_handlers-2963_Sched_Ruleset Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Hot_Water_Temperature, !- Name + Temperature, !- Schedule Type Limits Name + Hot_Water_Temperature Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + + Schedule:Year, + Office_Activity_Schedule, !- Name + ActivityLevel, !- Schedule Type Limits Name + Office_Activity_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Activity_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Elevator_Schedule, !- Name + Dimensionless, !- Schedule Type Limits Name + Office_Elevator_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Elevator_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Infiltration_Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Office_Infiltration_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Infiltration_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Plug_And_Process_Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Office_Plug_And_Process_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Plug_And_Process_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Office_Service_Water_Heating_Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Office_Service_Water_Heating_Schedule Week Rule - Jan1-Jan3, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 1, !- End Month 1 + 3, !- End Day 1 + Office_Service_Water_Heating_Schedule Week Rule - Jan4-Dec31, !- Schedule:Week Name 2 + 1, !- Start Month 2 + 4, !- Start Day 2 + 12, !- End Month 2 + 31; !- End Day 2 + + Schedule:Year, + Secondary CHW Temp - 44F,!- Name + Temperature, !- Schedule Type Limits Name + Secondary CHW Temp - 44F Week Rule - Jan1-Dec31, !- Schedule:Week Name 1 + 1, !- Start Month 1 + 1, !- Start Day 1 + 12, !- End Month 1 + 31; !- End Day 1 + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== + + Schedule:Compact, + blocks-3644_office_1_Core Thermostat Schedule, !- Name + blocks-3644_office_1_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_1_East Perimeter Thermostat Schedule, !- Name + blocks-3644_office_1_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_1_North Perimeter Thermostat Schedule, !- Name + blocks-3644_office_1_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_1_South Perimeter Thermostat Schedule, !- Name + blocks-3644_office_1_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_1_West Perimeter Thermostat Schedule, !- Name + blocks-3644_office_1_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_2_Core Thermostat Schedule, !- Name + blocks-3644_office_2_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_2_East Perimeter Thermostat Schedule, !- Name + blocks-3644_office_2_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_2_North Perimeter Thermostat Schedule, !- Name + blocks-3644_office_2_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_2_South Perimeter Thermostat Schedule, !- Name + blocks-3644_office_2_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3644_office_2_West Perimeter Thermostat Schedule, !- Name + blocks-3644_office_2_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_1_Core Thermostat Schedule, !- Name + blocks-3645_office_1_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_1_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_1_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_1_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_1_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_1_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_1_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_1_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_1_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_2_Core Thermostat Schedule, !- Name + blocks-3645_office_2_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_2_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_2_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_2_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_2_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_2_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_2_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_2_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_2_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_3_Core Thermostat Schedule, !- Name + blocks-3645_office_3_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_3_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_3_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_3_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_3_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_3_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_3_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_3_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_3_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_4_Core Thermostat Schedule, !- Name + blocks-3645_office_4_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_4_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_4_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_4_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_4_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_4_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_4_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_4_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_4_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_5_Core Thermostat Schedule, !- Name + blocks-3645_office_5_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_5_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_5_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_5_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_5_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_5_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_5_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_5_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_5_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_6_Core Thermostat Schedule, !- Name + blocks-3645_office_6_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_6_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_6_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_6_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_6_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_6_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_6_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_6_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_6_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_7_Core Thermostat Schedule, !- Name + blocks-3645_office_7_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_7_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_7_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_7_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_7_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_7_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_7_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_7_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_7_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_8_Core Thermostat Schedule, !- Name + blocks-3645_office_8_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_8_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_8_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_8_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_8_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_8_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_8_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_8_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_8_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_9_Core Thermostat Schedule, !- Name + blocks-3645_office_9_Core Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_9_East Perimeter Thermostat Schedule, !- Name + blocks-3645_office_9_East Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_9_North Perimeter Thermostat Schedule, !- Name + blocks-3645_office_9_North Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_9_South Perimeter Thermostat Schedule, !- Name + blocks-3645_office_9_South Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + blocks-3645_office_9_West Perimeter Thermostat Schedule, !- Name + blocks-3645_office_9_West Perimeter Thermostat Schedule Type Limits, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + Economizer Efficiency Schedule, !- Name + Fractional, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.9; !- Field 3 + + Schedule:Compact, + Tower-Loop-Temperature-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,21.1; !- Field 3 + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:CONSTANT =========== + + Schedule:Constant,Always On Discrete,OnOff 1,1; + + Schedule:Constant,Always Off Discrete,,0; + + Schedule:Constant,Always On Continuous,,1; + +!- =========== ALL OBJECTS IN CLASS: MATERIAL =========== + + Material, + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 784.9, !- Density {kg/m3} + 830, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.92, !- Solar Absorptance + 0.92; !- Visible Absorptance + + Material, + 4IN CONCRETE HW, !- Name + Rough, !- Roughness + 0.1016, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + IEAD Roof Insulation, !- Name + MediumRough, !- Roughness + 0.316696373180461, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + Metal Decking, !- Name + MediumSmooth, !- Roughness + 0.0015, !- Thickness {m} + 45.006, !- Conductivity {W/m-K} + 7680, !- Density {kg/m3} + 418.4, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.3; !- Visible Absorptance + + Material, + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1121.29, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + Steel Frame Wall Insulation, !- Name + MediumRough, !- Roughness + 0.148554253465291, !- Thickness {m} + 0.049, !- Conductivity {W/m-K} + 265, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + Wood Siding, !- Name + MediumSmooth, !- Roughness + 0.01, !- Thickness {m} + 0.11, !- Conductivity {W/m-K} + 544.62, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.78, !- Solar Absorptance + 0.78; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: MATERIAL:NOMASS =========== + + Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: WINDOWMATERIAL:SIMPLEGLAZINGSYSTEM =========== + + WindowMaterial:SimpleGlazingSystem, + Glazing Layer, !- Name + 1.70347896769017, !- U-Factor {W/m2-K} + 0.4171, !- Solar Heat Gain Coefficient + 0.7; !- Visible Transmittance + + WindowMaterial:SimpleGlazingSystem, + Glazing Layer 1, !- Name + 1.70347896769017, !- U-Factor {W/m2-K} + 0.51, !- Solar Heat Gain Coefficient + 0.7; !- Visible Transmittance + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== + + Construction, + fenestration_1.7034789676901698_0.4171_0.7, !- Name + Glazing Layer; !- Outside Layer + + Construction, + fenestration_1.7034789676901698_0.51_0.7, !- Name + Glazing Layer 1; !- Outside Layer + + Construction, + IEAD_Metal_Deck, !- Name + Roof Membrane, !- Outside Layer + IEAD Roof Insulation, !- Layer 2 + Metal Decking; !- Layer 3 + + Construction, + INT-FLOOR-TOPSIDE, !- Name + 1/2IN Gypsum, !- Outside Layer + 4IN CONCRETE HW, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + INT-FLOOR-UNDERSIDE, !- Name + CP02 CARPET PAD, !- Outside Layer + 4IN CONCRETE HW, !- Layer 2 + 1/2IN Gypsum; !- Layer 3 + + Construction, + Siding_Steel_Frame_Wall, !- Name + Wood Siding, !- Outside Layer + Steel Frame Wall Insulation, !- Layer 2 + 1/2IN Gypsum; !- Layer 3 + + Construction, + Standard_Int-Wall, !- Name + 1/2IN Gypsum, !- Outside Layer + 1/2IN Gypsum; !- Layer 2 + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION:FFACTORGROUNDFLOOR =========== + + Construction:FfactorGroundFloor, + Construction Ffactor Ground Floor 1, !- Name + 0.93474, !- F-Factor {W/m-K} + 1, !- Area {m2} + 1; !- PerimeterExposed {m} + + Construction:FfactorGroundFloor, + Construction Ffactor Ground Floor 2, !- Name + 0.93474, !- F-Factor {W/m-K} + 174.1932, !- Area {m2} + 42.672; !- PerimeterExposed {m} + + Construction:FfactorGroundFloor, + Construction Ffactor Ground Floor 3, !- Name + 0.93474, !- F-Factor {W/m-K} + 90.580464, !- Area {m2} + 24.384; !- PerimeterExposed {m} + + Construction:FfactorGroundFloor, + Construction Ffactor Ground Floor 4, !- Name + 0.93474, !- F-Factor {W/m-K} + 510.96672, !- Area {m2} + 0; !- PerimeterExposed {m} + +!- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES =========== + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative, !- Daylighting Reference Point Coordinate System + Relative; !- Rectangular Surface Coordinate System + +!- =========== ALL OBJECTS IN CLASS: ZONE =========== + + Zone, + blocks-3644_office_1_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_1_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_1_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_1_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_1_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_2_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_2_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_2_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_2_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3644_office_2_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_1_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_1_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_1_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_1_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_1_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_2_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_2_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_2_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_2_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_2_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_3_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_3_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_3_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_3_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_3_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_4_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_4_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_4_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_4_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_4_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_5_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_5_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_5_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_5_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_5_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_6_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_6_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_6_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_6_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_6_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_7_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_7_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_7_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_7_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_7_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_8_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_8_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_8_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_8_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_8_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_9_Core, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_9_East Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_9_North Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_9_South Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + blocks-3645_office_9_West Perimeter, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0; !- Z Origin {m} + + Zone, + Office_Mid_Plenum, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + Office_Mid_Plenum 2, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + Office_Top_Plenum, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + + Zone, + Office_Top_Plenum 2, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + , !- Type + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + No; !- Part of Total Floor Area + +!- =========== ALL OBJECTS IN CLASS: ZONELIST =========== + + ZoneList, + {6d40ff65-3418-4dc8-bd77-e8601e033264}, !- Name + Office_Mid_Plenum; !- Zone 1 Name + + ZoneList, + Office_Mid_Plenum 1, !- Name + Office_Mid_Plenum 2; !- Zone 1 Name + + ZoneList, + Office_Space_Type_62.2_Multizone_Adjusted, !- Name + blocks-3644_office_1_Core, !- Zone 1 Name + blocks-3644_office_1_East Perimeter, !- Zone 2 Name + blocks-3644_office_1_North Perimeter, !- Zone 3 Name + blocks-3644_office_1_South Perimeter, !- Zone 4 Name + blocks-3644_office_1_West Perimeter, !- Zone 5 Name + blocks-3644_office_2_Core, !- Zone 6 Name + blocks-3644_office_2_East Perimeter, !- Zone 7 Name + blocks-3644_office_2_North Perimeter, !- Zone 8 Name + blocks-3644_office_2_South Perimeter, !- Zone 9 Name + blocks-3644_office_2_West Perimeter, !- Zone 10 Name + blocks-3645_office_1_Core, !- Zone 11 Name + blocks-3645_office_1_East Perimeter, !- Zone 12 Name + blocks-3645_office_1_North Perimeter, !- Zone 13 Name + blocks-3645_office_1_South Perimeter, !- Zone 14 Name + blocks-3645_office_1_West Perimeter, !- Zone 15 Name + blocks-3645_office_2_Core, !- Zone 16 Name + blocks-3645_office_2_East Perimeter, !- Zone 17 Name + blocks-3645_office_2_North Perimeter, !- Zone 18 Name + blocks-3645_office_2_South Perimeter, !- Zone 19 Name + blocks-3645_office_2_West Perimeter, !- Zone 20 Name + blocks-3645_office_3_Core, !- Zone 21 Name + blocks-3645_office_3_East Perimeter, !- Zone 22 Name + blocks-3645_office_3_North Perimeter, !- Zone 23 Name + blocks-3645_office_3_South Perimeter, !- Zone 24 Name + blocks-3645_office_3_West Perimeter, !- Zone 25 Name + blocks-3645_office_4_Core, !- Zone 26 Name + blocks-3645_office_4_East Perimeter, !- Zone 27 Name + blocks-3645_office_4_North Perimeter, !- Zone 28 Name + blocks-3645_office_4_South Perimeter, !- Zone 29 Name + blocks-3645_office_4_West Perimeter, !- Zone 30 Name + blocks-3645_office_5_Core, !- Zone 31 Name + blocks-3645_office_5_East Perimeter, !- Zone 32 Name + blocks-3645_office_5_North Perimeter, !- Zone 33 Name + blocks-3645_office_5_South Perimeter, !- Zone 34 Name + blocks-3645_office_5_West Perimeter, !- Zone 35 Name + blocks-3645_office_6_Core, !- Zone 36 Name + blocks-3645_office_6_East Perimeter, !- Zone 37 Name + blocks-3645_office_6_North Perimeter, !- Zone 38 Name + blocks-3645_office_6_South Perimeter, !- Zone 39 Name + blocks-3645_office_6_West Perimeter, !- Zone 40 Name + blocks-3645_office_7_Core, !- Zone 41 Name + blocks-3645_office_7_East Perimeter, !- Zone 42 Name + blocks-3645_office_7_North Perimeter, !- Zone 43 Name + blocks-3645_office_7_South Perimeter, !- Zone 44 Name + blocks-3645_office_7_West Perimeter, !- Zone 45 Name + blocks-3645_office_8_Core, !- Zone 46 Name + blocks-3645_office_8_East Perimeter, !- Zone 47 Name + blocks-3645_office_8_North Perimeter, !- Zone 48 Name + blocks-3645_office_8_South Perimeter, !- Zone 49 Name + blocks-3645_office_8_West Perimeter, !- Zone 50 Name + blocks-3645_office_9_Core, !- Zone 51 Name + blocks-3645_office_9_East Perimeter, !- Zone 52 Name + blocks-3645_office_9_North Perimeter, !- Zone 53 Name + blocks-3645_office_9_South Perimeter, !- Zone 54 Name + blocks-3645_office_9_West Perimeter; !- Zone 55 Name + + ZoneList, + {5c03f227-5cc9-45b5-b1f7-f94fecc3e9c6}, !- Name + Office_Top_Plenum; !- Zone 1 Name + + ZoneList, + Office_Top_Plenum 1, !- Name + Office_Top_Plenum 2; !- Zone 1 Name + +!- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED =========== + + BuildingSurface:Detailed, + Surface 31, !- Name + Floor, !- Surface Type + Construction Ffactor Ground Floor 4, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 32, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 10, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 33, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 16, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 34, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 22, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 35, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 28, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 36, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 76, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 19, !- Name + Floor, !- Surface Type + Construction Ffactor Ground Floor 2, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,0, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 20, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,0, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 21, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 29, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 22, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 34, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 23, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 15, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 24, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 74, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 13, !- Name + Floor, !- Surface Type + Construction Ffactor Ground Floor 3, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,0, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 14, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,0, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 15, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 23, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,0, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 16, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 33, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 17, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 9, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 18, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 73, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 25, !- Name + Floor, !- Surface Type + Construction Ffactor Ground Floor 3, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 26, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 27, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 11, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 28, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 35, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 29, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 21, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 30, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 75, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 10, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 32, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 11, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 27, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 12, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 7, !- Name + Floor, !- Surface Type + Construction Ffactor Ground Floor 2, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 8, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,0, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,0, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 9, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 17, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,0, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,0, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 67, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 80, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 68, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 46, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 69, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 52, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 70, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 58, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 71, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 64, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 72, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 84, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 55, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 78, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 56, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 57, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 65, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 58, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 70, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 59, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 51, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 60, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 82, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 49, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 77, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 50, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 51, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 59, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 52, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 69, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 53, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 45, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 54, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 81, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 61, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 79, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 62, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 63, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 47, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 64, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 71, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 65, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 57, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 66, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 83, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 43, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 6, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 44, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 45, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 53, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 46, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 68, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 47, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 63, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 48, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3644_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 37, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 115, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 481, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 116, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 94, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 117, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 100, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 118, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 106, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 119, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 112, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 120, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_1_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 412, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 103, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 478, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 104, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 105, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 113, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 106, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 118, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 107, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 99, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 108, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_1_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 410, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 100, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 117, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 101, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 93, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 102, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 409, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 97, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 42, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 98, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 99, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 107, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 109, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 479, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 110, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 111, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 95, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 112, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 119, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 113, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 105, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 114, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_1_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 411, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 91, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 477, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 92, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 93, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 101, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 94, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 116, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 95, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 111, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 96, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_1_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 85, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 151, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 416, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 152, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 130, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 153, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 136, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 154, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 142, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 155, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 148, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 156, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_2_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 420, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 139, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 414, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 140, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 141, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 149, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 142, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 154, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 143, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 135, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 144, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_2_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 418, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 133, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 413, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 134, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 135, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 143, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 136, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 153, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 137, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 129, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 138, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_2_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 417, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 145, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 415, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 146, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 147, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 131, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 148, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 155, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 149, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 141, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 150, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_2_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 419, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 127, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 90, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 128, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 129, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 137, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 130, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 152, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 131, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 147, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 132, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_2_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 121, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 187, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 424, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 188, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 166, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 189, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 172, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 190, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 178, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 191, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 184, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 192, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_3_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 428, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 175, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 422, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 176, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 177, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 185, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 178, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 190, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 179, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 171, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 180, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_3_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 426, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 169, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 421, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 170, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 171, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 179, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 172, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 189, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 173, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 165, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 174, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_3_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 425, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 181, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 423, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 182, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 183, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 167, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 184, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 191, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 185, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 177, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 186, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_3_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 427, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 163, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 126, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 164, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 165, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 173, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 166, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 188, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 167, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 183, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 168, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_3_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 157, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 223, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 432, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 224, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 202, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 225, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 208, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 226, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 214, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 227, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 220, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 228, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_4_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 436, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 211, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 430, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 212, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 213, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 221, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 214, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 226, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 215, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 207, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 216, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_4_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 434, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 205, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 429, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 206, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 207, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 215, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 208, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 225, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 209, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 201, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 210, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_4_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 433, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 217, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 431, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 218, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 219, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 203, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 220, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 227, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 221, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 213, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 222, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_4_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 435, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 199, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 162, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 200, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 201, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 209, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 202, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 224, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 203, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 219, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 204, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_4_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 193, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 259, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 440, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 260, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 238, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 261, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 244, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 262, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 250, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 263, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 256, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 264, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_5_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 444, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 247, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 438, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 248, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 249, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 257, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 250, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 262, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 251, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 243, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 252, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_5_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 442, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 241, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 437, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 242, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 243, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 251, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 244, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 261, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 245, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 237, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 246, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_5_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 441, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 253, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 439, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 254, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 255, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 239, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 256, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 263, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 257, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 249, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 258, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_5_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 443, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 235, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 198, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 236, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 237, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 245, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 238, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 260, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 239, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 255, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 240, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_5_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 229, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 295, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 448, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 296, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 274, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 297, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 280, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 298, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 286, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 299, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 292, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 300, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_6_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 452, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 283, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 446, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 284, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 285, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 293, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 286, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 298, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 287, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 279, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 288, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_6_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 450, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 277, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 445, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 278, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 279, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 287, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 280, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 297, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 281, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 273, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 282, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_6_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 449, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 289, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 447, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 290, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 291, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 275, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 292, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 299, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 293, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 285, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 294, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_6_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 451, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 271, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 234, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 272, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 273, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 281, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 274, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 296, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 275, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 291, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 276, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_6_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 265, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 331, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 456, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 332, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 310, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 333, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 316, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 334, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 322, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 335, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 328, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 336, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_7_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 460, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 319, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 454, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 320, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 321, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 329, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 322, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 334, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 323, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 315, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 324, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_7_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 458, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 313, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 453, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 314, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 315, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 323, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 316, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 333, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 317, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 309, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 318, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_7_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 457, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 325, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 455, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 326, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 327, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 311, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 328, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 335, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 329, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 321, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 330, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_7_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 459, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 307, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 270, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 308, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 309, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 317, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 310, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 332, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 311, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 327, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 312, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_7_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 301, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 367, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 464, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 368, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 346, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 369, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 352, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 370, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 358, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 371, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 364, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 372, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_8_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 468, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 355, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 462, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 356, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 357, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 365, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 358, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 370, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 359, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 351, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 360, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_8_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 466, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 349, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 461, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 350, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 351, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 359, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 352, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 369, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 353, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 345, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 354, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_8_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 465, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 361, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 463, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 362, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 363, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 347, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 364, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 371, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 365, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 357, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 366, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_8_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 467, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 343, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 306, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 344, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 345, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 353, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 346, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 368, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 347, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 363, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 348, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_8_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 337, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 403, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 472, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 404, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 382, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 405, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 388, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 406, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 394, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 407, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 400, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 408, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_9_Core, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 476, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 391, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 470, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 392, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 393, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 401, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 394, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 406, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 395, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 387, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 396, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_9_East Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 474, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 385, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 469, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 386, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 387, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 395, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 388, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 405, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 389, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 381, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 390, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_9_North Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 473, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 397, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 471, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 398, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 399, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 383, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 400, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 407, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 401, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 393, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 402, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_9_South Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 475, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 379, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 342, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 380, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 381, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 389, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 382, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 404, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 383, !- Name + Wall, !- Surface Type + Standard_Int-Wall, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 399, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 384, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + blocks-3645_office_9_West Perimeter, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 373, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 1, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 2, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 3, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 4, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 5, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 6, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 43, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 73, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 18, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 74, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 24, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 75, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 30, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 76, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 36, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,2.7432, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,2.7432, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,2.7432; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 77, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 49, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 78, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 55, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,3.6576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,-22.86,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 79, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 61, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 80, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 67, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,3.6576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,3.6576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,3.6576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 121, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 132, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 122, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 123, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 124, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 125, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 126, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 163, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 157, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 168, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 158, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 159, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 160, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 161, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 162, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 199, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 193, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 204, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 194, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 195, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 196, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 197, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 198, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 235, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 229, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 240, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 230, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 231, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 232, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 233, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 234, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 271, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 265, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 276, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 266, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 267, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 268, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 269, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 270, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 307, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 301, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 312, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 302, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 303, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 304, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 305, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 306, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 343, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 337, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 348, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 338, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 339, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 340, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 341, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 342, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 379, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 409, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 102, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 410, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 108, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 411, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 114, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 412, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 120, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 413, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 133, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 414, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 139, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 415, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 145, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 416, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 151, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 417, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 138, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,13.716, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 418, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 144, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 419, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 150, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,13.716, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 420, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 156, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,13.716, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,13.716, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,13.716, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,13.716; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 421, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 169, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 422, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 175, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,14.6304, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 423, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 181, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 424, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 187, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,14.6304, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,14.6304, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,14.6304; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 425, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 174, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 426, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 180, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 427, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 186, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 428, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 192, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,17.3736, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,17.3736, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,17.3736; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 429, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 205, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 430, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 211, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,18.288, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 431, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 217, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,18.288, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,18.288, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 432, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 223, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,18.288, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,18.288, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,18.288, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,18.288; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 433, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 210, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 434, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 216, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 435, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 222, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 436, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 228, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.0312, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.0312, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.0312; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 437, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 241, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 438, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 247, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,21.9456, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 439, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 253, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 440, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 259, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,21.9456, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,21.9456, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,21.9456; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 441, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 246, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 442, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 252, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 443, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 258, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 444, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 264, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,24.6888, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,24.6888, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,24.6888; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 445, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 277, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 446, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 283, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,25.6032, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 447, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 289, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 448, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 295, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,25.6032, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,25.6032, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,25.6032; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 449, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 282, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 450, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 288, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 451, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 294, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 452, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 300, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,28.3464, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,28.3464, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,28.3464; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 453, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 313, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 454, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 319, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,29.2608, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 455, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 325, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 456, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 331, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,29.2608, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,29.2608, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,29.2608; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 457, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 318, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.004, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 458, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 324, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 459, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 330, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,32.004, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 460, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 336, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.004, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.004, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.004, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.004; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 461, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 349, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 462, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 355, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,32.9184, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 463, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 361, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 464, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 367, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,32.9184, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,32.9184, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,32.9184; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 465, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 354, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 466, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 360, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 467, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 366, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 468, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 372, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,35.6616, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,35.6616, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,35.6616; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 469, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 385, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 470, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 391, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,36.576, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 471, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 397, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,36.576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,36.576, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 472, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 403, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,36.576, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,36.576, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,36.576, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,36.576; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 85, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 96, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.0584; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 86, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 87, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 88, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,10.0584, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 89, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,10.0584, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 90, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Mid_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 127, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,10.9728, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,10.9728, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,10.9728, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,10.9728; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 37, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 48, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 38, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 39, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 40, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 41, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-27.432,7.3152, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-27.432,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 42, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 97, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 477, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 91, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 1 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 478, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 103, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,7.3152, !- X,Y,Z ==> Vertex 2 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + 7.62,1.524,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 479, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 109, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 480, !- Name + Roof, !- Surface Type + IEAD_Metal_Deck, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-27.432,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.432,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 481, !- Name + Ceiling, !- Surface Type + INT-FLOOR-UNDERSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 115, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,7.3152, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,7.3152, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,7.3152; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 81, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 54, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 82, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 60, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 2 {m} + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 83, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 66, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.432,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -7.62,-22.86,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 84, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 72, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,6.4008, !- X,Y,Z ==> Vertex 1 {m} + 7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 2 {m} + -7.62,-22.86,6.4008, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,6.4008; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 373, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 384, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 374, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,15.24,40.2336, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,40.2336; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 375, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,40.2336, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,40.2336; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 376, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,40.2336, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.24,40.2336; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 377, !- Name + Wall, !- Surface Type + Siding_Steel_Frame_Wall, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -12.192,-3.048,40.2336, !- X,Y,Z ==> Vertex 1 {m} + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 2 {m} + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 3 {m} + 12.192,-3.048,40.2336; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 378, !- Name + Roof, !- Surface Type + IEAD_Metal_Deck, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,-3.048,40.2336, !- X,Y,Z ==> Vertex 1 {m} + 12.192,15.24,40.2336, !- X,Y,Z ==> Vertex 2 {m} + -12.192,15.24,40.2336, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.048,40.2336; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 473, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 390, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -12.192,15.24,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 474, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 396, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 12.192,15.24,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 2 {m} + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 3 {m} + 7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 475, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 402, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.048,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -7.62,1.524,39.3192; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Surface 476, !- Name + Floor, !- Surface Type + INT-FLOOR-TOPSIDE, !- Construction Name + Office_Top_Plenum 2, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Surface 408, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.62,10.668,39.3192, !- X,Y,Z ==> Vertex 1 {m} + 7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 2 {m} + -7.62,1.524,39.3192, !- X,Y,Z ==> Vertex 3 {m} + -7.62,10.668,39.3192; !- X,Y,Z ==> Vertex 4 {m} + +!- =========== ALL OBJECTS IN CLASS: FENESTRATIONSURFACE:DETAILED =========== + + FenestrationSurface:Detailed, + Sub Surface 5, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 20, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-27.4066,1.86058784266985, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.4066,0.762, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,0.762, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,1.86058784266985; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 3, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 14, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,1.86157077244259, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,0.762, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,0.762, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,1.86157077244259; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 1 {m} + + FenestrationSurface:Detailed, + Sub Surface 7, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 26, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-27.432,1.86157077244259, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-27.432,0.762, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-27.432,0.762, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-27.432,1.86157077244259; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 1, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 8, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,1.86058784266985, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,0.762, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.4066,0.762, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.4066,1.86058784266985; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 6, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 56, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-27.4066,5.51818784266985, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-27.4066,4.4196, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,4.4196, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,5.51818784266985; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 4, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 50, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,5.51917077244259, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,4.4196, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,4.4196, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,5.51917077244259; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 1 {m} + + FenestrationSurface:Detailed, + Sub Surface 8, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 62, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-27.432,5.51917077244259, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-27.432,4.4196, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-27.432,4.4196, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-27.432,5.51917077244259; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 2, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 44, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,5.51818784266985, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,4.4196, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-27.4066,4.4196, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-27.4066,5.51818784266985; !- X,Y,Z ==> Vertex 4 {m} + + !- X,Y,Z 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 27, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 104, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,9.1775364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,8.0772, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,8.0772, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,9.1775364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 18, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 98, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,9.17677077244259, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,8.0772, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,8.0772, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,9.17677077244259; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 36, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 110, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,9.17677077244259, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,8.0772, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,8.0772, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,9.17677077244259; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 9, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 92, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,9.1775364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,8.0772, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,8.0772, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,9.1775364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 28, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 140, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,12.8351364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,11.7348, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,11.7348, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,12.8351364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 19, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 134, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,12.8343707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,11.7348, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,11.7348, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,12.8343707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 37, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 146, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,12.8343707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,11.7348, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,11.7348, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,12.8343707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 10, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 128, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,12.8351364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,11.7348, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,11.7348, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,12.8351364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 29, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 176, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,16.4927364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,15.3924, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,15.3924, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,16.4927364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 20, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 170, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,16.4919707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,15.3924, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,15.3924, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,16.4919707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 38, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 182, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,16.4919707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,15.3924, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,15.3924, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,16.4919707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 11, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 164, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,16.4927364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,15.3924, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,15.3924, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,16.4927364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 30, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 212, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,20.1503364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,19.05, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,19.05, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,20.1503364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 21, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 206, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,20.1495707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,19.05, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,19.05, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,20.1495707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 39, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 218, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,20.1495707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,19.05, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,19.05, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,20.1495707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 12, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 200, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,20.1503364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,19.05, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,19.05, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,20.1503364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 31, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 248, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,23.8079364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,22.7076, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,22.7076, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,23.8079364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 22, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 242, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,23.8071707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,22.7076, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,22.7076, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,23.8071707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 40, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 254, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,23.8071707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,22.7076, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,22.7076, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,23.8071707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 13, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 236, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,23.8079364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,22.7076, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,22.7076, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,23.8079364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 32, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 284, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,27.4655364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,26.3652, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,26.3652, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,27.4655364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 23, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 278, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,27.4647707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,26.3652, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,26.3652, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,27.4647707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 41, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 290, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,27.4647707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,26.3652, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,26.3652, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,27.4647707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 14, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 272, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,27.4655364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,26.3652, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,26.3652, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,27.4655364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 33, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 320, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,31.1231364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,30.0228, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,30.0228, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,31.1231364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 24, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 314, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,31.1223707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,30.0228, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,30.0228, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,31.1223707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 42, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 326, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,31.1223707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,30.0228, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,30.0228, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,31.1223707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 15, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 308, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,31.1231364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,30.0228, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,30.0228, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,31.1231364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 34, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 356, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,34.7807364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,33.6804, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,33.6804, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,34.7807364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 25, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 350, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,34.7799707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,33.6804, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,33.6804, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,34.7799707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 43, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 362, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,34.7799707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,33.6804, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,33.6804, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,34.7799707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 16, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 344, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,34.7807364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,33.6804, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,33.6804, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,34.7807364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 35, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 392, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.192,-3.0226,38.4383364902507, !- X,Y,Z ==> Vertex 1 {m} + 12.192,-3.0226,37.338, !- X,Y,Z ==> Vertex 2 {m} + 12.192,15.2146,37.338, !- X,Y,Z ==> Vertex 3 {m} + 12.192,15.2146,38.4383364902507; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 26, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.51_0.7, !- Construction Name + Surface 386, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 12.1666,15.24,38.4375707724426, !- X,Y,Z ==> Vertex 1 {m} + 12.1666,15.24,37.338, !- X,Y,Z ==> Vertex 2 {m} + -12.1666,15.24,37.338, !- X,Y,Z ==> Vertex 3 {m} + -12.1666,15.24,38.4375707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 44, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 398, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.1666,-3.048,38.4375707724426, !- X,Y,Z ==> Vertex 1 {m} + -12.1666,-3.048,37.338, !- X,Y,Z ==> Vertex 2 {m} + 12.1666,-3.048,37.338, !- X,Y,Z ==> Vertex 3 {m} + 12.1666,-3.048,38.4375707724426; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Sub Surface 17, !- Name + Window, !- Surface Type + fenestration_1.7034789676901698_0.4171_0.7, !- Construction Name + Surface 380, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + -12.192,15.2146,38.4383364902507, !- X,Y,Z ==> Vertex 1 {m} + -12.192,15.2146,37.338, !- X,Y,Z ==> Vertex 2 {m} + -12.192,-3.0226,37.338, !- X,Y,Z ==> Vertex 3 {m} + -12.192,-3.0226,38.4383364902507; !- X,Y,Z ==> Vertex 4 {m} + +!- =========== ALL OBJECTS IN CLASS: PEOPLE =========== + + People, + Office_Occupants 1, !- Name + Office_Space_Type_62.2_Multizone_Adjusted, !- Zone or ZoneList or Space or SpaceList Name + Office_Occupancy_Schedule, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Floor Area {person/m2} + 18.580608, !- Floor Area per Person {m2/person} + 0.3, !- Fraction Radiant + 0.5, !- Sensible Heat Fraction + Office_Activity_Schedule; !- Activity Level Schedule Name + +!- =========== ALL OBJECTS IN CLASS: LIGHTS =========== + + Lights, + Office_Lights 5, !- Name + blocks-3644_office_1_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 3, !- Name + blocks-3644_office_1_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 2, !- Name + blocks-3644_office_1_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 4, !- Name + blocks-3644_office_1_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 1, !- Name + blocks-3644_office_1_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 10, !- Name + blocks-3644_office_2_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 8, !- Name + blocks-3644_office_2_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 7, !- Name + blocks-3644_office_2_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 9, !- Name + blocks-3644_office_2_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 6, !- Name + blocks-3644_office_2_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10343277347541, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 15, !- Name + blocks-3645_office_1_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 13, !- Name + blocks-3645_office_1_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 12, !- Name + blocks-3645_office_1_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 14, !- Name + blocks-3645_office_1_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 11, !- Name + blocks-3645_office_1_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 20, !- Name + blocks-3645_office_2_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 18, !- Name + blocks-3645_office_2_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 17, !- Name + blocks-3645_office_2_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 19, !- Name + blocks-3645_office_2_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 16, !- Name + blocks-3645_office_2_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 25, !- Name + blocks-3645_office_3_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 23, !- Name + blocks-3645_office_3_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 22, !- Name + blocks-3645_office_3_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 24, !- Name + blocks-3645_office_3_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 21, !- Name + blocks-3645_office_3_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 30, !- Name + blocks-3645_office_4_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 28, !- Name + blocks-3645_office_4_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 27, !- Name + blocks-3645_office_4_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 29, !- Name + blocks-3645_office_4_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 26, !- Name + blocks-3645_office_4_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 35, !- Name + blocks-3645_office_5_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 33, !- Name + blocks-3645_office_5_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 32, !- Name + blocks-3645_office_5_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 34, !- Name + blocks-3645_office_5_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 31, !- Name + blocks-3645_office_5_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 40, !- Name + blocks-3645_office_6_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 38, !- Name + blocks-3645_office_6_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 37, !- Name + blocks-3645_office_6_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 39, !- Name + blocks-3645_office_6_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 36, !- Name + blocks-3645_office_6_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 45, !- Name + blocks-3645_office_7_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 43, !- Name + blocks-3645_office_7_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 42, !- Name + blocks-3645_office_7_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 44, !- Name + blocks-3645_office_7_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 41, !- Name + blocks-3645_office_7_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 50, !- Name + blocks-3645_office_8_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 48, !- Name + blocks-3645_office_8_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 47, !- Name + blocks-3645_office_8_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 49, !- Name + blocks-3645_office_8_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 46, !- Name + blocks-3645_office_8_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 55, !- Name + blocks-3645_office_9_Core, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 53, !- Name + blocks-3645_office_9_East Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 52, !- Name + blocks-3645_office_9_North Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 54, !- Name + blocks-3645_office_9_South Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 51, !- Name + blocks-3645_office_9_West Perimeter, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.10412702976931, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + , !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + + Lights, + Office_Lights 56, !- Name + Office_Space_Type_62.2_Multizone_Adjusted, !- Zone or ZoneList or Space or SpaceList Name + Office_Lighting_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Return Air Fraction + 0.37, !- Fraction Radiant + 0.18, !- Fraction Visible + 1, !- Fraction Replaceable + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== + + ElectricEquipment, + Office_Plug_Loads 1, !- Name + Office_Space_Type_62.2_Multizone_Adjusted, !- Zone or ZoneList or Space or SpaceList Name + Office_Plug_And_Process_Schedule, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 8.07293281253229, !- Watts per Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0, !- Fraction Lost + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION:DESIGNFLOWRATE =========== + + ZoneInfiltration:DesignFlowRate, + Office_Infiltration 1, !- Name + Office_Mid_Plenum, !- Zone or ZoneList or Space or SpaceList Name + Office_Infiltration_Schedule, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow Rate per Floor Area {m3/s-m2} + 0.00022783, !- Flow Rate per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + , !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office_Infiltration 3, !- Name + Office_Mid_Plenum 1, !- Zone or ZoneList or Space or SpaceList Name + Office_Infiltration_Schedule, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow Rate per Floor Area {m3/s-m2} + 0.00022783, !- Flow Rate per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + , !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office_Infiltration 5, !- Name + Office_Space_Type_62.2_Multizone_Adjusted, !- Zone or ZoneList or Space or SpaceList Name + Office_Infiltration_Schedule, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow Rate per Floor Area {m3/s-m2} + 0.00022783, !- Flow Rate per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + , !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office_Infiltration 2, !- Name + {5c03f227-5cc9-45b5-b1f7-f94fecc3e9c6}, !- Zone or ZoneList or Space or SpaceList Name + Office_Infiltration_Schedule, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow Rate per Floor Area {m3/s-m2} + 3.89553886010363e-005, !- Flow Rate per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + , !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Office_Infiltration 4, !- Name + Office_Top_Plenum 1, !- Zone or ZoneList or Space or SpaceList Name + Office_Infiltration_Schedule, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow Rate per Floor Area {m3/s-m2} + 3.39321276595745e-005, !- Flow Rate per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + , !- Temperature Term Coefficient + 0.224, !- Velocity Term Coefficient + ; !- Velocity Squared Term Coefficient + +!- =========== ALL OBJECTS IN CLASS: DESIGNSPECIFICATION:OUTDOORAIR =========== + + DesignSpecification:OutdoorAir, + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Name + Sum, !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0.00053975, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Outdoor Air Flow per Zone {m3/s} + 0; !- Outdoor Air Flow Air Changes per Hour {1/hr} + +!- =========== ALL OBJECTS IN CLASS: DESIGNSPECIFICATION:ZONEAIRDISTRIBUTION =========== + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_1_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_1_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_1_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_1_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_1_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_2_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_2_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_2_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_2_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3644_office_2_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_1_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_1_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_1_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_1_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_1_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_2_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_2_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_2_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_2_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_2_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_3_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_3_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_3_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_3_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_3_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_4_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_4_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_4_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_4_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_4_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_5_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_5_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_5_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_5_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_5_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_6_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_6_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_6_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_6_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_6_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_7_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_7_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_7_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_7_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_7_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_8_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_8_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_8_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_8_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_8_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_9_Core Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_9_East Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_9_North Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_9_South Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + + DesignSpecification:ZoneAirDistribution, + blocks-3645_office_9_West Perimeter Design Spec Zone Air Dist, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1; !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + +!- =========== ALL OBJECTS IN CLASS: SIZING:PARAMETERS =========== + + Sizing:Parameters, + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + +!- =========== ALL OBJECTS IN CLASS: SIZING:ZONE =========== + + Sizing:Zone, + blocks-3644_office_1_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_1_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_1_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_1_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_1_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_1_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_1_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_1_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_1_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_1_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_2_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_2_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_2_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_2_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_2_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_2_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_2_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_2_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3644_office_2_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3644_office_2_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_1_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_1_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_1_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_1_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_1_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_1_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_1_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_1_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_1_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_1_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_2_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_2_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_2_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_2_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_2_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_2_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_2_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_2_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_2_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_2_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_3_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_3_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_3_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_3_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_3_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_3_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_3_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_3_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_3_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_3_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_4_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_4_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_4_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_4_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_4_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_4_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_4_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_4_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_4_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_4_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_5_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_5_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_5_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_5_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_5_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_5_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_5_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_5_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_5_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_5_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_6_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_6_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_6_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_6_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_6_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_6_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_6_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_6_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_6_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_6_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_7_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_7_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_7_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_7_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_7_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_7_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_7_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_7_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_7_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_7_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_8_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_8_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_8_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_8_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_8_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_8_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_8_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_8_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_8_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_8_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_9_Core, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_9_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_9_East Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_9_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_9_North Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_9_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_9_South Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_9_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Sizing:Zone, + blocks-3645_office_9_West Perimeter, !- Zone or ZoneList Name + TemperatureDifference, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + TemperatureDifference, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0, !- Cooling Design Air Flow Rate {m3/s} + 0.000762, !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0, !- Heating Design Air Flow Rate {m3/s} + 0.002032, !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + 0.1415762, !- Heating Maximum Air Flow {m3/s} + 0.3, !- Heating Maximum Air Flow Fraction + blocks-3645_office_9_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +!- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM =========== + + Sizing:System, + AirLoop air_handlers-2963, !- AirLoop Name + Sensible, !- Type of Load to Size On + Autosize, !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + NonCoincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Central Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + DesignDay, !- Cooling Supply Air Flow Rate Method + 0, !- Cooling Supply Air Flow Rate {m3/s} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0, !- Heating Supply Air Flow Rate {m3/s} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + Autosize, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + Autosize, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +!- =========== ALL OBJECTS IN CLASS: SIZING:PLANT =========== + + Sizing:Plant, + Boiler plant plant_loops-1904, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82, !- Design Loop Exit Temperature {C} + 11, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + + Sizing:Plant, + Chiller plant plant_loops-1903, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 6.67, !- Design Loop Exit Temperature {C} + 5.6, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + + Sizing:Plant, + Condenser Plant plant_loops-1902, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29.4, !- Design Loop Exit Temperature {C} + 5.54, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +!- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== + + ZoneControl:Thermostat, + blocks-3644_office_1_Core Thermostat, !- Name + blocks-3644_office_1_Core, !- Zone or ZoneList Name + blocks-3644_office_1_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 5; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_1_East Perimeter Thermostat, !- Name + blocks-3644_office_1_East Perimeter, !- Zone or ZoneList Name + blocks-3644_office_1_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 3; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_1_North Perimeter Thermostat, !- Name + blocks-3644_office_1_North Perimeter, !- Zone or ZoneList Name + blocks-3644_office_1_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 2; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_1_South Perimeter Thermostat, !- Name + blocks-3644_office_1_South Perimeter, !- Zone or ZoneList Name + blocks-3644_office_1_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 4; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_1_West Perimeter Thermostat, !- Name + blocks-3644_office_1_West Perimeter, !- Zone or ZoneList Name + blocks-3644_office_1_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 1; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_2_Core Thermostat, !- Name + blocks-3644_office_2_Core, !- Zone or ZoneList Name + blocks-3644_office_2_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 10; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_2_East Perimeter Thermostat, !- Name + blocks-3644_office_2_East Perimeter, !- Zone or ZoneList Name + blocks-3644_office_2_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 8; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_2_North Perimeter Thermostat, !- Name + blocks-3644_office_2_North Perimeter, !- Zone or ZoneList Name + blocks-3644_office_2_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 7; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_2_South Perimeter Thermostat, !- Name + blocks-3644_office_2_South Perimeter, !- Zone or ZoneList Name + blocks-3644_office_2_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 9; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3644_office_2_West Perimeter Thermostat, !- Name + blocks-3644_office_2_West Perimeter, !- Zone or ZoneList Name + blocks-3644_office_2_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 6; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_1_Core Thermostat, !- Name + blocks-3645_office_1_Core, !- Zone or ZoneList Name + blocks-3645_office_1_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 15; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_1_East Perimeter Thermostat, !- Name + blocks-3645_office_1_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_1_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 13; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_1_North Perimeter Thermostat, !- Name + blocks-3645_office_1_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_1_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 12; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_1_South Perimeter Thermostat, !- Name + blocks-3645_office_1_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_1_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 14; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_1_West Perimeter Thermostat, !- Name + blocks-3645_office_1_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_1_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 11; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_2_Core Thermostat, !- Name + blocks-3645_office_2_Core, !- Zone or ZoneList Name + blocks-3645_office_2_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 20; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_2_East Perimeter Thermostat, !- Name + blocks-3645_office_2_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_2_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 18; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_2_North Perimeter Thermostat, !- Name + blocks-3645_office_2_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_2_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 17; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_2_South Perimeter Thermostat, !- Name + blocks-3645_office_2_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_2_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 19; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_2_West Perimeter Thermostat, !- Name + blocks-3645_office_2_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_2_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 16; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_3_Core Thermostat, !- Name + blocks-3645_office_3_Core, !- Zone or ZoneList Name + blocks-3645_office_3_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 25; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_3_East Perimeter Thermostat, !- Name + blocks-3645_office_3_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_3_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 23; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_3_North Perimeter Thermostat, !- Name + blocks-3645_office_3_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_3_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 22; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_3_South Perimeter Thermostat, !- Name + blocks-3645_office_3_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_3_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 24; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_3_West Perimeter Thermostat, !- Name + blocks-3645_office_3_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_3_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 21; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_4_Core Thermostat, !- Name + blocks-3645_office_4_Core, !- Zone or ZoneList Name + blocks-3645_office_4_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 30; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_4_East Perimeter Thermostat, !- Name + blocks-3645_office_4_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_4_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 28; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_4_North Perimeter Thermostat, !- Name + blocks-3645_office_4_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_4_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 27; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_4_South Perimeter Thermostat, !- Name + blocks-3645_office_4_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_4_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 29; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_4_West Perimeter Thermostat, !- Name + blocks-3645_office_4_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_4_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 26; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_5_Core Thermostat, !- Name + blocks-3645_office_5_Core, !- Zone or ZoneList Name + blocks-3645_office_5_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 35; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_5_East Perimeter Thermostat, !- Name + blocks-3645_office_5_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_5_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 33; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_5_North Perimeter Thermostat, !- Name + blocks-3645_office_5_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_5_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 32; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_5_South Perimeter Thermostat, !- Name + blocks-3645_office_5_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_5_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 34; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_5_West Perimeter Thermostat, !- Name + blocks-3645_office_5_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_5_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 31; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_6_Core Thermostat, !- Name + blocks-3645_office_6_Core, !- Zone or ZoneList Name + blocks-3645_office_6_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 40; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_6_East Perimeter Thermostat, !- Name + blocks-3645_office_6_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_6_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 38; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_6_North Perimeter Thermostat, !- Name + blocks-3645_office_6_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_6_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 37; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_6_South Perimeter Thermostat, !- Name + blocks-3645_office_6_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_6_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 39; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_6_West Perimeter Thermostat, !- Name + blocks-3645_office_6_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_6_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 36; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_7_Core Thermostat, !- Name + blocks-3645_office_7_Core, !- Zone or ZoneList Name + blocks-3645_office_7_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 45; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_7_East Perimeter Thermostat, !- Name + blocks-3645_office_7_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_7_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 43; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_7_North Perimeter Thermostat, !- Name + blocks-3645_office_7_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_7_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 42; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_7_South Perimeter Thermostat, !- Name + blocks-3645_office_7_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_7_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 44; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_7_West Perimeter Thermostat, !- Name + blocks-3645_office_7_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_7_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 41; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_8_Core Thermostat, !- Name + blocks-3645_office_8_Core, !- Zone or ZoneList Name + blocks-3645_office_8_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 50; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_8_East Perimeter Thermostat, !- Name + blocks-3645_office_8_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_8_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 48; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_8_North Perimeter Thermostat, !- Name + blocks-3645_office_8_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_8_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 47; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_8_South Perimeter Thermostat, !- Name + blocks-3645_office_8_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_8_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 49; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_8_West Perimeter Thermostat, !- Name + blocks-3645_office_8_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_8_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 46; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_9_Core Thermostat, !- Name + blocks-3645_office_9_Core, !- Zone or ZoneList Name + blocks-3645_office_9_Core Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 55; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_9_East Perimeter Thermostat, !- Name + blocks-3645_office_9_East Perimeter, !- Zone or ZoneList Name + blocks-3645_office_9_East Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 53; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_9_North Perimeter Thermostat, !- Name + blocks-3645_office_9_North Perimeter, !- Zone or ZoneList Name + blocks-3645_office_9_North Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 52; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_9_South Perimeter Thermostat, !- Name + blocks-3645_office_9_South Perimeter, !- Zone or ZoneList Name + blocks-3645_office_9_South Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 54; !- Control 1 Name + + ZoneControl:Thermostat, + blocks-3645_office_9_West Perimeter Thermostat, !- Name + blocks-3645_office_9_West Perimeter, !- Zone or ZoneList Name + blocks-3645_office_9_West Perimeter Thermostat Schedule, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Thermostat Setpoint Dual Setpoint 51; !- Control 1 Name + +!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:DUALSETPOINT =========== + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 5, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 3, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 2, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 4, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 1, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 10, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 8, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 7, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 9, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 6, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 15, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 13, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 12, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 14, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 11, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 20, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 18, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 17, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 19, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 16, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 25, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 23, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 22, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 24, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 21, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 30, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 28, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 27, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 29, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 26, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 35, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 33, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 32, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 34, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 31, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 40, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 38, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 37, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 39, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 36, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 45, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 43, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 42, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 44, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 41, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 50, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 48, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 47, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 49, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 46, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 55, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 53, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 52, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 54, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Thermostat Setpoint Dual Setpoint 51, !- Name + Office_Heating_Schedule, !- Heating Setpoint Temperature Schedule Name + Office_Cooling_Schedule; !- Cooling Setpoint Temperature Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:VAV:REHEAT =========== + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 5, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 5 Damper Outlet, !- Damper Air Outlet Node Name + Node 130, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 6, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 128, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 3, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 3 Damper Outlet, !- Damper Air Outlet Node Name + Node 120, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 4, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 118, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 2, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 2 Damper Outlet, !- Damper Air Outlet Node Name + Node 115, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 3, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 113, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 4, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 4 Damper Outlet, !- Damper Air Outlet Node Name + Node 125, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 5, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 123, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 1, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 1 Damper Outlet, !- Damper Air Outlet Node Name + Node 110, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 2, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 99, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 10, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 10 Damper Outlet, !- Damper Air Outlet Node Name + Node 155, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 11, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 153, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 8, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 8 Damper Outlet, !- Damper Air Outlet Node Name + Node 145, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 9, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 143, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 7, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 7 Damper Outlet, !- Damper Air Outlet Node Name + Node 140, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 8, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 138, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 9, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 9 Damper Outlet, !- Damper Air Outlet Node Name + Node 150, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 10, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 148, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 6, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 6 Damper Outlet, !- Damper Air Outlet Node Name + Node 135, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 7, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 133, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 15, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 15 Damper Outlet, !- Damper Air Outlet Node Name + Node 182, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 16, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 180, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 13, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 13 Damper Outlet, !- Damper Air Outlet Node Name + Node 172, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 14, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 170, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 12, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 12 Damper Outlet, !- Damper Air Outlet Node Name + Node 167, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 13, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 165, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 14, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 14 Damper Outlet, !- Damper Air Outlet Node Name + Node 177, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 15, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 175, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 11, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 11 Damper Outlet, !- Damper Air Outlet Node Name + Node 162, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 12, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 160, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 20, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 20 Damper Outlet, !- Damper Air Outlet Node Name + Node 207, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 21, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 205, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 18, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 18 Damper Outlet, !- Damper Air Outlet Node Name + Node 197, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 19, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 195, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 17, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 17 Damper Outlet, !- Damper Air Outlet Node Name + Node 192, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 18, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 190, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 19, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 19 Damper Outlet, !- Damper Air Outlet Node Name + Node 202, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 20, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 200, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 16, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 16 Damper Outlet, !- Damper Air Outlet Node Name + Node 187, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 17, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 185, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 25, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 25 Damper Outlet, !- Damper Air Outlet Node Name + Node 232, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 26, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 230, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 23, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 23 Damper Outlet, !- Damper Air Outlet Node Name + Node 222, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 24, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 220, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 22, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 22 Damper Outlet, !- Damper Air Outlet Node Name + Node 217, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 23, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 215, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 24, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 24 Damper Outlet, !- Damper Air Outlet Node Name + Node 227, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 25, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 225, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 21, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 21 Damper Outlet, !- Damper Air Outlet Node Name + Node 212, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 22, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 210, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 30, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 30 Damper Outlet, !- Damper Air Outlet Node Name + Node 257, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 31, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 255, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 28, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 28 Damper Outlet, !- Damper Air Outlet Node Name + Node 247, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 29, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 245, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 27, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 27 Damper Outlet, !- Damper Air Outlet Node Name + Node 242, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 28, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 240, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 29, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 29 Damper Outlet, !- Damper Air Outlet Node Name + Node 252, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 30, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 250, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 26, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 26 Damper Outlet, !- Damper Air Outlet Node Name + Node 237, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 27, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 235, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 35, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 35 Damper Outlet, !- Damper Air Outlet Node Name + Node 282, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 36, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 280, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 33, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 33 Damper Outlet, !- Damper Air Outlet Node Name + Node 272, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 34, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 270, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 32, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 32 Damper Outlet, !- Damper Air Outlet Node Name + Node 267, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 33, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 265, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 34, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 34 Damper Outlet, !- Damper Air Outlet Node Name + Node 277, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 35, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 275, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 31, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 31 Damper Outlet, !- Damper Air Outlet Node Name + Node 262, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 32, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 260, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 40, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 40 Damper Outlet, !- Damper Air Outlet Node Name + Node 307, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 41, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 305, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 38, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 38 Damper Outlet, !- Damper Air Outlet Node Name + Node 297, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 39, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 295, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 37, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 37 Damper Outlet, !- Damper Air Outlet Node Name + Node 292, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 38, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 290, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 39, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 39 Damper Outlet, !- Damper Air Outlet Node Name + Node 302, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 40, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 300, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 36, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 36 Damper Outlet, !- Damper Air Outlet Node Name + Node 287, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 37, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 285, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 45, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 45 Damper Outlet, !- Damper Air Outlet Node Name + Node 332, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 46, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 330, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 43, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 43 Damper Outlet, !- Damper Air Outlet Node Name + Node 322, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 44, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 320, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 42, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 42 Damper Outlet, !- Damper Air Outlet Node Name + Node 317, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 43, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 315, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 44, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 44 Damper Outlet, !- Damper Air Outlet Node Name + Node 327, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 45, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 325, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 41, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 41 Damper Outlet, !- Damper Air Outlet Node Name + Node 312, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 42, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 310, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 50, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 50 Damper Outlet, !- Damper Air Outlet Node Name + Node 357, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 51, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 355, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 48, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 48 Damper Outlet, !- Damper Air Outlet Node Name + Node 347, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 49, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 345, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 47, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 47 Damper Outlet, !- Damper Air Outlet Node Name + Node 342, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 48, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 340, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 49, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 49 Damper Outlet, !- Damper Air Outlet Node Name + Node 352, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 50, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 350, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 46, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 46 Damper Outlet, !- Damper Air Outlet Node Name + Node 337, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 47, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 335, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 55, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 55 Damper Outlet, !- Damper Air Outlet Node Name + Node 382, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 56, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 380, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 53, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 53 Damper Outlet, !- Damper Air Outlet Node Name + Node 372, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 54, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 370, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 52, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 52 Damper Outlet, !- Damper Air Outlet Node Name + Node 367, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 53, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 365, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 54, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 54 Damper Outlet, !- Damper Air Outlet Node Name + Node 377, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 55, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 375, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Air Terminal Single Duct VAV Reheat 51, !- Name + Always_On, !- Availability Schedule Name + Air Terminal Single Duct VAV Reheat 51 Damper Outlet, !- Damper Air Outlet Node Name + Node 362, !- Air Inlet Node Name + Autosize, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.3, !- Constant Minimum Air Flow Fraction + 0, !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Coil Heating Water 52, !- Reheat Coil Name + Autosize, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Node 360, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + Normal, !- Damper Heating Action + Autocalculate, !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + Autocalculate, !- Maximum Flow Fraction During Reheat + 35; !- Maximum Reheat Air Temperature {C} + +!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:AIRDISTRIBUTIONUNIT =========== + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 5, !- Name + Node 128, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 5; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 3, !- Name + Node 118, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 3; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 2, !- Name + Node 113, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 2; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 4, !- Name + Node 123, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 4; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 1, !- Name + Node 99, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 1; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 10, !- Name + Node 153, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 10; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 8, !- Name + Node 143, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 8; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 7, !- Name + Node 138, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 7; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 9, !- Name + Node 148, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 9; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 6, !- Name + Node 133, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 6; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 15, !- Name + Node 180, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 15; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 13, !- Name + Node 170, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 13; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 12, !- Name + Node 165, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 12; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 14, !- Name + Node 175, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 14; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 11, !- Name + Node 160, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 11; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 20, !- Name + Node 205, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 20; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 18, !- Name + Node 195, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 18; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 17, !- Name + Node 190, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 17; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 19, !- Name + Node 200, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 19; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 16, !- Name + Node 185, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 16; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 25, !- Name + Node 230, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 25; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 23, !- Name + Node 220, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 23; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 22, !- Name + Node 215, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 22; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 24, !- Name + Node 225, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 24; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 21, !- Name + Node 210, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 21; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 30, !- Name + Node 255, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 30; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 28, !- Name + Node 245, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 28; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 27, !- Name + Node 240, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 27; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 29, !- Name + Node 250, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 29; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 26, !- Name + Node 235, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 26; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 35, !- Name + Node 280, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 35; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 33, !- Name + Node 270, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 33; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 32, !- Name + Node 265, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 32; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 34, !- Name + Node 275, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 34; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 31, !- Name + Node 260, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 31; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 40, !- Name + Node 305, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 40; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 38, !- Name + Node 295, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 38; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 37, !- Name + Node 290, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 37; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 39, !- Name + Node 300, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 39; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 36, !- Name + Node 285, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 36; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 45, !- Name + Node 330, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 45; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 43, !- Name + Node 320, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 43; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 42, !- Name + Node 315, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 42; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 44, !- Name + Node 325, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 44; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 41, !- Name + Node 310, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 41; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 50, !- Name + Node 355, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 50; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 48, !- Name + Node 345, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 48; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 47, !- Name + Node 340, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 47; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 49, !- Name + Node 350, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 49; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 46, !- Name + Node 335, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 46; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 55, !- Name + Node 380, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 55; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 53, !- Name + Node 370, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 53; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 52, !- Name + Node 365, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 52; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 54, !- Name + Node 375, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 54; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + ADU Air Terminal Single Duct VAV Reheat 51, !- Name + Node 360, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Air Terminal Single Duct VAV Reheat 51; !- Air Terminal Name + +!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== + + ZoneHVAC:EquipmentList, + blocks-3644_office_1_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 5, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_1_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 3, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_1_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 2, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_1_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 4, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_1_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 1, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_2_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 10, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_2_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 8, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_2_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 7, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_2_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 9, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3644_office_2_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 6, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_1_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 15, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_1_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 13, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_1_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 12, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_1_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 14, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_1_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 11, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_2_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 20, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_2_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 18, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_2_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 17, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_2_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 19, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_2_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 16, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_3_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 25, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_3_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 23, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_3_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 22, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_3_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 24, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_3_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 21, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_4_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 30, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_4_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 28, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_4_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 27, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_4_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 29, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_4_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 26, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_5_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 35, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_5_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 33, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_5_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 32, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_5_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 34, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_5_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 31, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_6_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 40, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_6_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 38, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_6_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 37, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_6_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 39, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_6_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 36, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_7_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 45, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_7_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 43, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_7_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 42, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_7_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 44, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_7_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 41, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_8_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 50, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_8_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 48, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_8_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 47, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_8_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 49, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_8_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 46, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_9_Core Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 55, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_9_East Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 53, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_9_North Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 52, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_9_South Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 54, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + blocks-3645_office_9_West Perimeter Equipment List, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + ADU Air Terminal Single Duct VAV Reheat 51, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + +!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTCONNECTIONS =========== + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_1_Core, !- Zone Name + blocks-3644_office_1_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_1_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 5, !- Zone Air Node Name + blocks-3644_office_1_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_1_East Perimeter, !- Zone Name + blocks-3644_office_1_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_1_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 3, !- Zone Air Node Name + blocks-3644_office_1_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_1_North Perimeter, !- Zone Name + blocks-3644_office_1_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_1_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 2, !- Zone Air Node Name + blocks-3644_office_1_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_1_South Perimeter, !- Zone Name + blocks-3644_office_1_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_1_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 4, !- Zone Air Node Name + blocks-3644_office_1_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_1_West Perimeter, !- Zone Name + blocks-3644_office_1_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_1_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 1, !- Zone Air Node Name + blocks-3644_office_1_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_2_Core, !- Zone Name + blocks-3644_office_2_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_2_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 10, !- Zone Air Node Name + blocks-3644_office_2_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_2_East Perimeter, !- Zone Name + blocks-3644_office_2_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_2_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 8, !- Zone Air Node Name + blocks-3644_office_2_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_2_North Perimeter, !- Zone Name + blocks-3644_office_2_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_2_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 7, !- Zone Air Node Name + blocks-3644_office_2_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_2_South Perimeter, !- Zone Name + blocks-3644_office_2_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_2_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 9, !- Zone Air Node Name + blocks-3644_office_2_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3644_office_2_West Perimeter, !- Zone Name + blocks-3644_office_2_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3644_office_2_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 6, !- Zone Air Node Name + blocks-3644_office_2_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_1_Core, !- Zone Name + blocks-3645_office_1_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_1_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 15, !- Zone Air Node Name + blocks-3645_office_1_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_1_East Perimeter, !- Zone Name + blocks-3645_office_1_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_1_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 13, !- Zone Air Node Name + blocks-3645_office_1_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_1_North Perimeter, !- Zone Name + blocks-3645_office_1_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_1_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 12, !- Zone Air Node Name + blocks-3645_office_1_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_1_South Perimeter, !- Zone Name + blocks-3645_office_1_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_1_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 14, !- Zone Air Node Name + blocks-3645_office_1_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_1_West Perimeter, !- Zone Name + blocks-3645_office_1_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_1_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 11, !- Zone Air Node Name + blocks-3645_office_1_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_2_Core, !- Zone Name + blocks-3645_office_2_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_2_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 20, !- Zone Air Node Name + blocks-3645_office_2_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_2_East Perimeter, !- Zone Name + blocks-3645_office_2_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_2_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 18, !- Zone Air Node Name + blocks-3645_office_2_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_2_North Perimeter, !- Zone Name + blocks-3645_office_2_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_2_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 17, !- Zone Air Node Name + blocks-3645_office_2_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_2_South Perimeter, !- Zone Name + blocks-3645_office_2_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_2_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 19, !- Zone Air Node Name + blocks-3645_office_2_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_2_West Perimeter, !- Zone Name + blocks-3645_office_2_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_2_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 16, !- Zone Air Node Name + blocks-3645_office_2_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_3_Core, !- Zone Name + blocks-3645_office_3_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_3_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 25, !- Zone Air Node Name + blocks-3645_office_3_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_3_East Perimeter, !- Zone Name + blocks-3645_office_3_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_3_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 23, !- Zone Air Node Name + blocks-3645_office_3_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_3_North Perimeter, !- Zone Name + blocks-3645_office_3_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_3_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 22, !- Zone Air Node Name + blocks-3645_office_3_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_3_South Perimeter, !- Zone Name + blocks-3645_office_3_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_3_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 24, !- Zone Air Node Name + blocks-3645_office_3_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_3_West Perimeter, !- Zone Name + blocks-3645_office_3_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_3_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 21, !- Zone Air Node Name + blocks-3645_office_3_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_4_Core, !- Zone Name + blocks-3645_office_4_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_4_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 30, !- Zone Air Node Name + blocks-3645_office_4_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_4_East Perimeter, !- Zone Name + blocks-3645_office_4_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_4_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 28, !- Zone Air Node Name + blocks-3645_office_4_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_4_North Perimeter, !- Zone Name + blocks-3645_office_4_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_4_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 27, !- Zone Air Node Name + blocks-3645_office_4_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_4_South Perimeter, !- Zone Name + blocks-3645_office_4_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_4_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 29, !- Zone Air Node Name + blocks-3645_office_4_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_4_West Perimeter, !- Zone Name + blocks-3645_office_4_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_4_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 26, !- Zone Air Node Name + blocks-3645_office_4_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_5_Core, !- Zone Name + blocks-3645_office_5_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_5_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 35, !- Zone Air Node Name + blocks-3645_office_5_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_5_East Perimeter, !- Zone Name + blocks-3645_office_5_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_5_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 33, !- Zone Air Node Name + blocks-3645_office_5_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_5_North Perimeter, !- Zone Name + blocks-3645_office_5_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_5_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 32, !- Zone Air Node Name + blocks-3645_office_5_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_5_South Perimeter, !- Zone Name + blocks-3645_office_5_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_5_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 34, !- Zone Air Node Name + blocks-3645_office_5_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_5_West Perimeter, !- Zone Name + blocks-3645_office_5_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_5_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 31, !- Zone Air Node Name + blocks-3645_office_5_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_6_Core, !- Zone Name + blocks-3645_office_6_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_6_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 40, !- Zone Air Node Name + blocks-3645_office_6_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_6_East Perimeter, !- Zone Name + blocks-3645_office_6_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_6_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 38, !- Zone Air Node Name + blocks-3645_office_6_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_6_North Perimeter, !- Zone Name + blocks-3645_office_6_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_6_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 37, !- Zone Air Node Name + blocks-3645_office_6_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_6_South Perimeter, !- Zone Name + blocks-3645_office_6_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_6_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 39, !- Zone Air Node Name + blocks-3645_office_6_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_6_West Perimeter, !- Zone Name + blocks-3645_office_6_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_6_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 36, !- Zone Air Node Name + blocks-3645_office_6_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_7_Core, !- Zone Name + blocks-3645_office_7_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_7_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 45, !- Zone Air Node Name + blocks-3645_office_7_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_7_East Perimeter, !- Zone Name + blocks-3645_office_7_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_7_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 43, !- Zone Air Node Name + blocks-3645_office_7_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_7_North Perimeter, !- Zone Name + blocks-3645_office_7_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_7_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 42, !- Zone Air Node Name + blocks-3645_office_7_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_7_South Perimeter, !- Zone Name + blocks-3645_office_7_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_7_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 44, !- Zone Air Node Name + blocks-3645_office_7_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_7_West Perimeter, !- Zone Name + blocks-3645_office_7_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_7_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 41, !- Zone Air Node Name + blocks-3645_office_7_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_8_Core, !- Zone Name + blocks-3645_office_8_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_8_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 50, !- Zone Air Node Name + blocks-3645_office_8_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_8_East Perimeter, !- Zone Name + blocks-3645_office_8_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_8_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 48, !- Zone Air Node Name + blocks-3645_office_8_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_8_North Perimeter, !- Zone Name + blocks-3645_office_8_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_8_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 47, !- Zone Air Node Name + blocks-3645_office_8_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_8_South Perimeter, !- Zone Name + blocks-3645_office_8_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_8_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 49, !- Zone Air Node Name + blocks-3645_office_8_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_8_West Perimeter, !- Zone Name + blocks-3645_office_8_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_8_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 46, !- Zone Air Node Name + blocks-3645_office_8_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_9_Core, !- Zone Name + blocks-3645_office_9_Core Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_9_Core Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 55, !- Zone Air Node Name + blocks-3645_office_9_Core Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_9_East Perimeter, !- Zone Name + blocks-3645_office_9_East Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_9_East Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 53, !- Zone Air Node Name + blocks-3645_office_9_East Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_9_North Perimeter, !- Zone Name + blocks-3645_office_9_North Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_9_North Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 52, !- Zone Air Node Name + blocks-3645_office_9_North Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_9_South Perimeter, !- Zone Name + blocks-3645_office_9_South Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_9_South Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 54, !- Zone Air Node Name + blocks-3645_office_9_South Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + blocks-3645_office_9_West Perimeter, !- Zone Name + blocks-3645_office_9_West Perimeter Equipment List, !- Zone Conditioning Equipment List Name + blocks-3645_office_9_West Perimeter Inlet Node List, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Node 51, !- Zone Air Node Name + blocks-3645_office_9_West Perimeter Return Node List; !- Zone Return Air Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: FAN:VARIABLEVOLUME =========== + + Fan:VariableVolume, + AirLoop air_handlers-2963_Fan_103484382.9cfm, !- Name + AirLoop air_handlers-2963_Sched_Ruleset, !- Availability Schedule Name + 0.55575, !- Fan Total Efficiency + 1338.67381570485, !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + FixedFlowRate, !- Fan Power Minimum Flow Rate Input Method + 0, !- Fan Power Minimum Flow Fraction + 0, !- Fan Power Minimum Air Flow Rate {m3/s} + 0.855, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + 0.040759894, !- Fan Power Coefficient 1 + 0.08804497, !- Fan Power Coefficient 2 + -0.07292612, !- Fan Power Coefficient 3 + 0.943739823, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + Node 104, !- Air Inlet Node Name + Node 96, !- Air Outlet Node Name + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATER =========== + + Coil:Cooling:Water, + Coil Cooling Water 1, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- Design Water Flow Rate {m3/s} + Autosize, !- Design Air Flow Rate {m3/s} + Autosize, !- Design Inlet Water Temperature {C} + Autosize, !- Design Inlet Air Temperature {C} + Autosize, !- Design Outlet Air Temperature {C} + Autosize, !- Design Inlet Air Humidity Ratio {kgWater/kgDryAir} + Autosize, !- Design Outlet Air Humidity Ratio {kgWater/kgDryAir} + Node 75, !- Water Inlet Node Name + Node 105, !- Water Outlet Node Name + Node 102, !- Air Inlet Node Name + Node 106, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATER =========== + + Coil:Heating:Water, + Coil Heating Water 6, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 126, !- Water Inlet Node Name + Node 127, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 5 Damper Outlet, !- Air Inlet Node Name + Node 128, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 4, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 116, !- Water Inlet Node Name + Node 117, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 3 Damper Outlet, !- Air Inlet Node Name + Node 118, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 3, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 111, !- Water Inlet Node Name + Node 112, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 2 Damper Outlet, !- Air Inlet Node Name + Node 113, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 5, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 121, !- Water Inlet Node Name + Node 122, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 4 Damper Outlet, !- Air Inlet Node Name + Node 123, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 2, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 107, !- Water Inlet Node Name + Node 108, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 1 Damper Outlet, !- Air Inlet Node Name + Node 99, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 11, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 151, !- Water Inlet Node Name + Node 152, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 10 Damper Outlet, !- Air Inlet Node Name + Node 153, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 9, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 141, !- Water Inlet Node Name + Node 142, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 8 Damper Outlet, !- Air Inlet Node Name + Node 143, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 8, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 136, !- Water Inlet Node Name + Node 137, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 7 Damper Outlet, !- Air Inlet Node Name + Node 138, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 10, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 146, !- Water Inlet Node Name + Node 147, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 9 Damper Outlet, !- Air Inlet Node Name + Node 148, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 7, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 131, !- Water Inlet Node Name + Node 132, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 6 Damper Outlet, !- Air Inlet Node Name + Node 133, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 16, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 178, !- Water Inlet Node Name + Node 179, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 15 Damper Outlet, !- Air Inlet Node Name + Node 180, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 14, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 168, !- Water Inlet Node Name + Node 169, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 13 Damper Outlet, !- Air Inlet Node Name + Node 170, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 13, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 163, !- Water Inlet Node Name + Node 164, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 12 Damper Outlet, !- Air Inlet Node Name + Node 165, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 15, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 173, !- Water Inlet Node Name + Node 174, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 14 Damper Outlet, !- Air Inlet Node Name + Node 175, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 12, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 158, !- Water Inlet Node Name + Node 159, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 11 Damper Outlet, !- Air Inlet Node Name + Node 160, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 21, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 203, !- Water Inlet Node Name + Node 204, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 20 Damper Outlet, !- Air Inlet Node Name + Node 205, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 19, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 193, !- Water Inlet Node Name + Node 194, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 18 Damper Outlet, !- Air Inlet Node Name + Node 195, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 18, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 188, !- Water Inlet Node Name + Node 189, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 17 Damper Outlet, !- Air Inlet Node Name + Node 190, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 20, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 198, !- Water Inlet Node Name + Node 199, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 19 Damper Outlet, !- Air Inlet Node Name + Node 200, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 17, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 183, !- Water Inlet Node Name + Node 184, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 16 Damper Outlet, !- Air Inlet Node Name + Node 185, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 26, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 228, !- Water Inlet Node Name + Node 229, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 25 Damper Outlet, !- Air Inlet Node Name + Node 230, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 24, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 218, !- Water Inlet Node Name + Node 219, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 23 Damper Outlet, !- Air Inlet Node Name + Node 220, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 23, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 213, !- Water Inlet Node Name + Node 214, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 22 Damper Outlet, !- Air Inlet Node Name + Node 215, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 25, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 223, !- Water Inlet Node Name + Node 224, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 24 Damper Outlet, !- Air Inlet Node Name + Node 225, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 22, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 208, !- Water Inlet Node Name + Node 209, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 21 Damper Outlet, !- Air Inlet Node Name + Node 210, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 31, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 253, !- Water Inlet Node Name + Node 254, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 30 Damper Outlet, !- Air Inlet Node Name + Node 255, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 29, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 243, !- Water Inlet Node Name + Node 244, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 28 Damper Outlet, !- Air Inlet Node Name + Node 245, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 28, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 238, !- Water Inlet Node Name + Node 239, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 27 Damper Outlet, !- Air Inlet Node Name + Node 240, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 30, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 248, !- Water Inlet Node Name + Node 249, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 29 Damper Outlet, !- Air Inlet Node Name + Node 250, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 27, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 233, !- Water Inlet Node Name + Node 234, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 26 Damper Outlet, !- Air Inlet Node Name + Node 235, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 36, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 278, !- Water Inlet Node Name + Node 279, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 35 Damper Outlet, !- Air Inlet Node Name + Node 280, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 34, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 268, !- Water Inlet Node Name + Node 269, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 33 Damper Outlet, !- Air Inlet Node Name + Node 270, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 33, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 263, !- Water Inlet Node Name + Node 264, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 32 Damper Outlet, !- Air Inlet Node Name + Node 265, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 35, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 273, !- Water Inlet Node Name + Node 274, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 34 Damper Outlet, !- Air Inlet Node Name + Node 275, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 32, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 258, !- Water Inlet Node Name + Node 259, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 31 Damper Outlet, !- Air Inlet Node Name + Node 260, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 41, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 303, !- Water Inlet Node Name + Node 304, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 40 Damper Outlet, !- Air Inlet Node Name + Node 305, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 39, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 293, !- Water Inlet Node Name + Node 294, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 38 Damper Outlet, !- Air Inlet Node Name + Node 295, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 38, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 288, !- Water Inlet Node Name + Node 289, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 37 Damper Outlet, !- Air Inlet Node Name + Node 290, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 40, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 298, !- Water Inlet Node Name + Node 299, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 39 Damper Outlet, !- Air Inlet Node Name + Node 300, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 37, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 283, !- Water Inlet Node Name + Node 284, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 36 Damper Outlet, !- Air Inlet Node Name + Node 285, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 46, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 328, !- Water Inlet Node Name + Node 329, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 45 Damper Outlet, !- Air Inlet Node Name + Node 330, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 44, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 318, !- Water Inlet Node Name + Node 319, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 43 Damper Outlet, !- Air Inlet Node Name + Node 320, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 43, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 313, !- Water Inlet Node Name + Node 314, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 42 Damper Outlet, !- Air Inlet Node Name + Node 315, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 45, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 323, !- Water Inlet Node Name + Node 324, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 44 Damper Outlet, !- Air Inlet Node Name + Node 325, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 42, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 308, !- Water Inlet Node Name + Node 309, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 41 Damper Outlet, !- Air Inlet Node Name + Node 310, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 51, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 353, !- Water Inlet Node Name + Node 354, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 50 Damper Outlet, !- Air Inlet Node Name + Node 355, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 49, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 343, !- Water Inlet Node Name + Node 344, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 48 Damper Outlet, !- Air Inlet Node Name + Node 345, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 48, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 338, !- Water Inlet Node Name + Node 339, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 47 Damper Outlet, !- Air Inlet Node Name + Node 340, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 50, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 348, !- Water Inlet Node Name + Node 349, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 49 Damper Outlet, !- Air Inlet Node Name + Node 350, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 47, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 333, !- Water Inlet Node Name + Node 334, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 46 Damper Outlet, !- Air Inlet Node Name + Node 335, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 56, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 378, !- Water Inlet Node Name + Node 379, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 55 Damper Outlet, !- Air Inlet Node Name + Node 380, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 54, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 368, !- Water Inlet Node Name + Node 369, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 53 Damper Outlet, !- Air Inlet Node Name + Node 370, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 53, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 363, !- Water Inlet Node Name + Node 364, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 52 Damper Outlet, !- Air Inlet Node Name + Node 365, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 55, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 373, !- Water Inlet Node Name + Node 374, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 54 Damper Outlet, !- Air Inlet Node Name + Node 375, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 52, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 358, !- Water Inlet Node Name + Node 359, !- Water Outlet Node Name + Air Terminal Single Duct VAV Reheat 51 Damper Outlet, !- Air Inlet Node Name + Node 360, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Coil Heating Water 1, !- Name + Always_On, !- Availability Schedule Name + Autosize, !- U-Factor Times Area Value {W/K} + Autosize, !- Maximum Water Flow Rate {m3/s} + Node 89, !- Water Inlet Node Name + Node 103, !- Water Outlet Node Name + Node 106, !- Air Inlet Node Name + Node 104, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + Autosize, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + 0.5; !- Rated Ratio for Air and Water Convection + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:WATERCOIL =========== + + Controller:WaterCoil, + Controller Water Coil 2, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + Node 106, !- Sensor Node Name + Node 75, !- Actuator Node Name + Autosize, !- Controller Convergence Tolerance {deltaC} + Autosize, !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + Controller Water Coil 1, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + Node 104, !- Sensor Node Name + Node 89, !- Actuator Node Name + Autosize, !- Controller Convergence Tolerance {deltaC} + Autosize, !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTDOORAIR =========== + + Controller:OutdoorAir, + Controller_OA-AirLoop air_handlers-2963, !- Name + Node 101, !- Relief Air Outlet Node Name + Node 95, !- Return Air Node Name + Node 102, !- Mixed Air Node Name + Node 100, !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Office_Occupancy_Schedule, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + Economizer Efficiency Schedule, !- Maximum Fraction of Outdoor Air Schedule Name + Controller_MV-AirLoop air_handlers-2963, !- Mechanical Ventilation Controller Name + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + Yes, !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:MECHANICALVENTILATION =========== + + Controller:MechanicalVentilation, + Controller_MV-AirLoop air_handlers-2963, !- Name + Office_Occupancy_Schedule, !- Availability Schedule Name + No, !- Demand Controlled Ventilation + ZoneSum, !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + blocks-3644_office_1_Core, !- Zone or ZoneList 1 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 1 + blocks-3644_office_1_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 1 + blocks-3644_office_1_East Perimeter, !- Zone or ZoneList 2 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 2 + blocks-3644_office_1_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 2 + blocks-3644_office_1_North Perimeter, !- Zone or ZoneList 3 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 3 + blocks-3644_office_1_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 3 + blocks-3644_office_1_South Perimeter, !- Zone or ZoneList 4 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 4 + blocks-3644_office_1_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 4 + blocks-3644_office_1_West Perimeter, !- Zone or ZoneList 5 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 5 + blocks-3644_office_1_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 5 + blocks-3644_office_2_Core, !- Zone or ZoneList 6 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 6 + blocks-3644_office_2_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 6 + blocks-3644_office_2_East Perimeter, !- Zone or ZoneList 7 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 7 + blocks-3644_office_2_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 7 + blocks-3644_office_2_North Perimeter, !- Zone or ZoneList 8 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 8 + blocks-3644_office_2_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 8 + blocks-3644_office_2_South Perimeter, !- Zone or ZoneList 9 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 9 + blocks-3644_office_2_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 9 + blocks-3644_office_2_West Perimeter, !- Zone or ZoneList 10 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 10 + blocks-3644_office_2_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 10 + blocks-3645_office_1_Core, !- Zone or ZoneList 11 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 11 + blocks-3645_office_1_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 11 + blocks-3645_office_1_East Perimeter, !- Zone or ZoneList 12 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 12 + blocks-3645_office_1_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 12 + blocks-3645_office_1_North Perimeter, !- Zone or ZoneList 13 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 13 + blocks-3645_office_1_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 13 + blocks-3645_office_1_South Perimeter, !- Zone or ZoneList 14 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 14 + blocks-3645_office_1_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 14 + blocks-3645_office_1_West Perimeter, !- Zone or ZoneList 15 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 15 + blocks-3645_office_1_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 15 + blocks-3645_office_2_Core, !- Zone or ZoneList 16 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 16 + blocks-3645_office_2_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 16 + blocks-3645_office_2_East Perimeter, !- Zone or ZoneList 17 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 17 + blocks-3645_office_2_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 17 + blocks-3645_office_2_North Perimeter, !- Zone or ZoneList 18 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 18 + blocks-3645_office_2_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 18 + blocks-3645_office_2_South Perimeter, !- Zone or ZoneList 19 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 19 + blocks-3645_office_2_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 19 + blocks-3645_office_2_West Perimeter, !- Zone or ZoneList 20 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 20 + blocks-3645_office_2_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 20 + blocks-3645_office_3_Core, !- Zone or ZoneList 21 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 21 + blocks-3645_office_3_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 21 + blocks-3645_office_3_East Perimeter, !- Zone or ZoneList 22 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 22 + blocks-3645_office_3_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 22 + blocks-3645_office_3_North Perimeter, !- Zone or ZoneList 23 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 23 + blocks-3645_office_3_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 23 + blocks-3645_office_3_South Perimeter, !- Zone or ZoneList 24 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 24 + blocks-3645_office_3_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 24 + blocks-3645_office_3_West Perimeter, !- Zone or ZoneList 25 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 25 + blocks-3645_office_3_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 25 + blocks-3645_office_4_Core, !- Zone or ZoneList 26 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 26 + blocks-3645_office_4_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 26 + blocks-3645_office_4_East Perimeter, !- Zone or ZoneList 27 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 27 + blocks-3645_office_4_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 27 + blocks-3645_office_4_North Perimeter, !- Zone or ZoneList 28 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 28 + blocks-3645_office_4_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 28 + blocks-3645_office_4_South Perimeter, !- Zone or ZoneList 29 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 29 + blocks-3645_office_4_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 29 + blocks-3645_office_4_West Perimeter, !- Zone or ZoneList 30 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 30 + blocks-3645_office_4_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 30 + blocks-3645_office_5_Core, !- Zone or ZoneList 31 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 31 + blocks-3645_office_5_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 31 + blocks-3645_office_5_East Perimeter, !- Zone or ZoneList 32 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 32 + blocks-3645_office_5_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 32 + blocks-3645_office_5_North Perimeter, !- Zone or ZoneList 33 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 33 + blocks-3645_office_5_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 33 + blocks-3645_office_5_South Perimeter, !- Zone or ZoneList 34 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 34 + blocks-3645_office_5_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 34 + blocks-3645_office_5_West Perimeter, !- Zone or ZoneList 35 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 35 + blocks-3645_office_5_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 35 + blocks-3645_office_6_Core, !- Zone or ZoneList 36 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 36 + blocks-3645_office_6_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 36 + blocks-3645_office_6_East Perimeter, !- Zone or ZoneList 37 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 37 + blocks-3645_office_6_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 37 + blocks-3645_office_6_North Perimeter, !- Zone or ZoneList 38 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 38 + blocks-3645_office_6_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 38 + blocks-3645_office_6_South Perimeter, !- Zone or ZoneList 39 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 39 + blocks-3645_office_6_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 39 + blocks-3645_office_6_West Perimeter, !- Zone or ZoneList 40 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 40 + blocks-3645_office_6_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 40 + blocks-3645_office_7_Core, !- Zone or ZoneList 41 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 41 + blocks-3645_office_7_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 41 + blocks-3645_office_7_East Perimeter, !- Zone or ZoneList 42 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 42 + blocks-3645_office_7_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 42 + blocks-3645_office_7_North Perimeter, !- Zone or ZoneList 43 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 43 + blocks-3645_office_7_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 43 + blocks-3645_office_7_South Perimeter, !- Zone or ZoneList 44 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 44 + blocks-3645_office_7_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 44 + blocks-3645_office_7_West Perimeter, !- Zone or ZoneList 45 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 45 + blocks-3645_office_7_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 45 + blocks-3645_office_8_Core, !- Zone or ZoneList 46 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 46 + blocks-3645_office_8_Core Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 46 + blocks-3645_office_8_East Perimeter, !- Zone or ZoneList 47 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 47 + blocks-3645_office_8_East Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 47 + blocks-3645_office_8_North Perimeter, !- Zone or ZoneList 48 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 48 + blocks-3645_office_8_North Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 48 + blocks-3645_office_8_South Perimeter, !- Zone or ZoneList 49 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 49 + blocks-3645_office_8_South Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 49 + blocks-3645_office_8_West Perimeter, !- Zone or ZoneList 50 Name + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Design Specification Outdoor Air Object Name 50 + blocks-3645_office_8_West Perimeter Design Spec Zone Air Dist, !- Design Specification Zone Air Distribution Object Name 50 + blocks-3645_office_9_Core, !- Extended Field + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Extended Field + blocks-3645_office_9_Core Design Spec Zone Air Dist, !- Extended Field + blocks-3645_office_9_East Perimeter, !- Extended Field + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Extended Field + blocks-3645_office_9_East Perimeter Design Spec Zone Air Dist, !- Extended Field + blocks-3645_office_9_North Perimeter, !- Extended Field + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Extended Field + blocks-3645_office_9_North Perimeter Design Spec Zone Air Dist, !- Extended Field + blocks-3645_office_9_South Perimeter, !- Extended Field + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Extended Field + blocks-3645_office_9_South Perimeter Design Spec Zone Air Dist, !- Extended Field + blocks-3645_office_9_West Perimeter, !- Extended Field + Office_Outdoor_Air_62.2_Multizone_Adjusted, !- Extended Field + blocks-3645_office_9_West Perimeter Design Spec Zone Air Dist; !- Extended Field + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST =========== + + AirLoopHVAC:ControllerList, + AirLoop air_handlers-2963 Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + Controller Water Coil 2, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + Controller Water Coil 1; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + OA_System-AirLoop air_handlers-2963 Controller List, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + Controller_OA-AirLoop air_handlers-2963; !- Controller 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== + + AirLoopHVAC, + AirLoop air_handlers-2963, !- Name + AirLoop air_handlers-2963 Controllers, !- Controller List Name + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Availability Manager List Name + AutoSize, !- Design Supply Air Flow Rate {m3/s} + AirLoop air_handlers-2963 Supply Branches, !- Branch List Name + , !- Connector List Name + Node 95, !- Supply Side Inlet Node Name + Node 98, !- Demand Side Outlet Node Name + AirLoop air_handlers-2963 Demand Inlet Nodes, !- Demand Side Inlet Node Names + AirLoop air_handlers-2963 Supply Outlet Nodes; !- Supply Side Outlet Node Names + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM:EQUIPMENTLIST =========== + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + OA_System-AirLoop air_handlers-2963 Equipment List, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + OA_System-AirLoop air_handlers-2963 Outdoor Air Mixer; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM =========== + + AirLoopHVAC:OutdoorAirSystem, + OA_System-AirLoop air_handlers-2963, !- Name + OA_System-AirLoop air_handlers-2963 Controller List, !- Controller List Name + OA_System-AirLoop air_handlers-2963 Equipment List; !- Outdoor Air Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER =========== + + OutdoorAir:Mixer, + OA_System-AirLoop air_handlers-2963 Outdoor Air Mixer, !- Name + Node 102, !- Mixed Air Node Name + Node 100, !- Outdoor Air Stream Node Name + Node 101, !- Relief Air Stream Node Name + Node 95; !- Return Air Stream Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== + + AirLoopHVAC:ZoneSplitter, + Air Loop HVAC Zone Splitter 1, !- Name + Node 97, !- Inlet Node Name + Node 110, !- Outlet 1 Node Name + Node 115, !- Outlet 2 Node Name + Node 120, !- Outlet 3 Node Name + Node 125, !- Outlet 4 Node Name + Node 130, !- Outlet 5 Node Name + Node 135, !- Outlet 6 Node Name + Node 140, !- Outlet 7 Node Name + Node 145, !- Outlet 8 Node Name + Node 150, !- Outlet 9 Node Name + Node 155, !- Outlet 10 Node Name + Node 162, !- Outlet 11 Node Name + Node 167, !- Outlet 12 Node Name + Node 172, !- Outlet 13 Node Name + Node 177, !- Outlet 14 Node Name + Node 182, !- Outlet 15 Node Name + Node 187, !- Outlet 16 Node Name + Node 192, !- Outlet 17 Node Name + Node 197, !- Outlet 18 Node Name + Node 202, !- Outlet 19 Node Name + Node 207, !- Outlet 20 Node Name + Node 212, !- Outlet 21 Node Name + Node 217, !- Outlet 22 Node Name + Node 222, !- Outlet 23 Node Name + Node 227, !- Outlet 24 Node Name + Node 232, !- Outlet 25 Node Name + Node 237, !- Outlet 26 Node Name + Node 242, !- Outlet 27 Node Name + Node 247, !- Outlet 28 Node Name + Node 252, !- Outlet 29 Node Name + Node 257, !- Outlet 30 Node Name + Node 262, !- Outlet 31 Node Name + Node 267, !- Outlet 32 Node Name + Node 272, !- Outlet 33 Node Name + Node 277, !- Outlet 34 Node Name + Node 282, !- Outlet 35 Node Name + Node 287, !- Outlet 36 Node Name + Node 292, !- Outlet 37 Node Name + Node 297, !- Outlet 38 Node Name + Node 302, !- Outlet 39 Node Name + Node 307, !- Outlet 40 Node Name + Node 312, !- Outlet 41 Node Name + Node 317, !- Outlet 42 Node Name + Node 322, !- Outlet 43 Node Name + Node 327, !- Outlet 44 Node Name + Node 332, !- Outlet 45 Node Name + Node 337, !- Outlet 46 Node Name + Node 342, !- Outlet 47 Node Name + Node 347, !- Outlet 48 Node Name + Node 352, !- Outlet 49 Node Name + Node 357, !- Outlet 50 Node Name + Node 362, !- Outlet 51 Node Name + Node 367, !- Outlet 52 Node Name + Node 372, !- Outlet 53 Node Name + Node 377, !- Outlet 54 Node Name + Node 382; !- Outlet 55 Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== + + AirLoopHVAC:SupplyPath, + AirLoop air_handlers-2963 Node 97 Supply Path, !- Name + Node 97, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + Air Loop HVAC Zone Splitter 1; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== + + AirLoopHVAC:ZoneMixer, + Air Loop HVAC Zone Mixer 1, !- Name + Node 98, !- Outlet Node Name + Node 109, !- Inlet 1 Node Name + Node 114, !- Inlet 2 Node Name + Node 119, !- Inlet 3 Node Name + Node 124, !- Inlet 4 Node Name + Node 129, !- Inlet 5 Node Name + Node 134, !- Inlet 6 Node Name + Node 139, !- Inlet 7 Node Name + Node 144, !- Inlet 8 Node Name + Node 149, !- Inlet 9 Node Name + Node 154, !- Inlet 10 Node Name + Node 161, !- Inlet 11 Node Name + Node 166, !- Inlet 12 Node Name + Node 171, !- Inlet 13 Node Name + Node 176, !- Inlet 14 Node Name + Node 181, !- Inlet 15 Node Name + Node 186, !- Inlet 16 Node Name + Node 191, !- Inlet 17 Node Name + Node 196, !- Inlet 18 Node Name + Node 201, !- Inlet 19 Node Name + Node 206, !- Inlet 20 Node Name + Node 211, !- Inlet 21 Node Name + Node 216, !- Inlet 22 Node Name + Node 221, !- Inlet 23 Node Name + Node 226, !- Inlet 24 Node Name + Node 231, !- Inlet 25 Node Name + Node 236, !- Inlet 26 Node Name + Node 241, !- Inlet 27 Node Name + Node 246, !- Inlet 28 Node Name + Node 251, !- Inlet 29 Node Name + Node 256, !- Inlet 30 Node Name + Node 261, !- Inlet 31 Node Name + Node 266, !- Inlet 32 Node Name + Node 271, !- Inlet 33 Node Name + Node 276, !- Inlet 34 Node Name + Node 281, !- Inlet 35 Node Name + Node 286, !- Inlet 36 Node Name + Node 291, !- Inlet 37 Node Name + Node 296, !- Inlet 38 Node Name + Node 301, !- Inlet 39 Node Name + Node 306, !- Inlet 40 Node Name + Node 311, !- Inlet 41 Node Name + Node 316, !- Inlet 42 Node Name + Node 321, !- Inlet 43 Node Name + Node 326, !- Inlet 44 Node Name + Node 331, !- Inlet 45 Node Name + Node 336, !- Inlet 46 Node Name + Node 341, !- Inlet 47 Node Name + Node 346, !- Inlet 48 Node Name + Node 351, !- Inlet 49 Node Name + Node 356, !- Inlet 50 Node Name + Node 361, !- Inlet 51 Node Name + Node 366, !- Inlet 52 Node Name + Node 371, !- Inlet 53 Node Name + Node 376, !- Inlet 54 Node Name + Node 381; !- Inlet 55 Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== + + AirLoopHVAC:ReturnPath, + AirLoop air_handlers-2963 Return Path, !- Name + Node 98, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + Air Loop HVAC Zone Mixer 1; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: BRANCH =========== + + Branch, + AirLoop air_handlers-2963 Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + OA_System-AirLoop air_handlers-2963, !- Component 1 Name + Node 95, !- Component 1 Inlet Node Name + Node 102, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + Coil Cooling Water 1, !- Component 2 Name + Node 102, !- Component 2 Inlet Node Name + Node 106, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + Coil Heating Water 1, !- Component 3 Name + Node 106, !- Component 3 Inlet Node Name + Node 104, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + AirLoop air_handlers-2963_Fan_103484382.9cfm, !- Component 4 Name + Node 104, !- Component 4 Inlet Node Name + Node 96; !- Component 4 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Heating: Pump for Boiler,!- Component 1 Name + Node 84, !- Component 1 Inlet Node Name + Node 90; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Supply Branch 1, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + Boiler for plant plant_loops-1904, !- Component 1 Name + Node 86, !- Component 1 Inlet Node Name + Node 91; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Supply Branch 2, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 8, !- Component 1 Name + Node 92, !- Component 1 Inlet Node Name + Node 93; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 9, !- Component 1 Name + Node 94, !- Component 1 Inlet Node Name + Node 85; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Boiler plant plant_loops-1904 Demand Inlet Pipe, !- Component 1 Name + Node 87, !- Component 1 Inlet Node Name + Boiler plant plant_loops-1904 Demand Inlet Pipe Node; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 1, !- Component 1 Name + Node 89, !- Component 1 Inlet Node Name + Node 103; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 2, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 2, !- Component 1 Name + Node 107, !- Component 1 Inlet Node Name + Node 108; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 3, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 3, !- Component 1 Name + Node 111, !- Component 1 Inlet Node Name + Node 112; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 4, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 4, !- Component 1 Name + Node 116, !- Component 1 Inlet Node Name + Node 117; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 5, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 5, !- Component 1 Name + Node 121, !- Component 1 Inlet Node Name + Node 122; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 6, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 6, !- Component 1 Name + Node 126, !- Component 1 Inlet Node Name + Node 127; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 7, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 7, !- Component 1 Name + Node 131, !- Component 1 Inlet Node Name + Node 132; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 8, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 8, !- Component 1 Name + Node 136, !- Component 1 Inlet Node Name + Node 137; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 9, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 9, !- Component 1 Name + Node 141, !- Component 1 Inlet Node Name + Node 142; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 10, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 10, !- Component 1 Name + Node 146, !- Component 1 Inlet Node Name + Node 147; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 11, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 11, !- Component 1 Name + Node 151, !- Component 1 Inlet Node Name + Node 152; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 12, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 12, !- Component 1 Name + Node 158, !- Component 1 Inlet Node Name + Node 159; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 13, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 13, !- Component 1 Name + Node 163, !- Component 1 Inlet Node Name + Node 164; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 14, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 14, !- Component 1 Name + Node 168, !- Component 1 Inlet Node Name + Node 169; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 15, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 15, !- Component 1 Name + Node 173, !- Component 1 Inlet Node Name + Node 174; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 16, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 16, !- Component 1 Name + Node 178, !- Component 1 Inlet Node Name + Node 179; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 17, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 17, !- Component 1 Name + Node 183, !- Component 1 Inlet Node Name + Node 184; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 18, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 18, !- Component 1 Name + Node 188, !- Component 1 Inlet Node Name + Node 189; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 19, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 19, !- Component 1 Name + Node 193, !- Component 1 Inlet Node Name + Node 194; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 20, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 20, !- Component 1 Name + Node 198, !- Component 1 Inlet Node Name + Node 199; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 21, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 21, !- Component 1 Name + Node 203, !- Component 1 Inlet Node Name + Node 204; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 22, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 22, !- Component 1 Name + Node 208, !- Component 1 Inlet Node Name + Node 209; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 23, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 23, !- Component 1 Name + Node 213, !- Component 1 Inlet Node Name + Node 214; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 24, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 24, !- Component 1 Name + Node 218, !- Component 1 Inlet Node Name + Node 219; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 25, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 25, !- Component 1 Name + Node 223, !- Component 1 Inlet Node Name + Node 224; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 26, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 26, !- Component 1 Name + Node 228, !- Component 1 Inlet Node Name + Node 229; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 27, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 27, !- Component 1 Name + Node 233, !- Component 1 Inlet Node Name + Node 234; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 28, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 28, !- Component 1 Name + Node 238, !- Component 1 Inlet Node Name + Node 239; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 29, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 29, !- Component 1 Name + Node 243, !- Component 1 Inlet Node Name + Node 244; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 30, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 30, !- Component 1 Name + Node 248, !- Component 1 Inlet Node Name + Node 249; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 31, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 31, !- Component 1 Name + Node 253, !- Component 1 Inlet Node Name + Node 254; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 32, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 32, !- Component 1 Name + Node 258, !- Component 1 Inlet Node Name + Node 259; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 33, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 33, !- Component 1 Name + Node 263, !- Component 1 Inlet Node Name + Node 264; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 34, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 34, !- Component 1 Name + Node 268, !- Component 1 Inlet Node Name + Node 269; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 35, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 35, !- Component 1 Name + Node 273, !- Component 1 Inlet Node Name + Node 274; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 36, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 36, !- Component 1 Name + Node 278, !- Component 1 Inlet Node Name + Node 279; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 37, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 37, !- Component 1 Name + Node 283, !- Component 1 Inlet Node Name + Node 284; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 38, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 38, !- Component 1 Name + Node 288, !- Component 1 Inlet Node Name + Node 289; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 39, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 39, !- Component 1 Name + Node 293, !- Component 1 Inlet Node Name + Node 294; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 40, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 40, !- Component 1 Name + Node 298, !- Component 1 Inlet Node Name + Node 299; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 41, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 41, !- Component 1 Name + Node 303, !- Component 1 Inlet Node Name + Node 304; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 42, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 42, !- Component 1 Name + Node 308, !- Component 1 Inlet Node Name + Node 309; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 43, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 43, !- Component 1 Name + Node 313, !- Component 1 Inlet Node Name + Node 314; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 44, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 44, !- Component 1 Name + Node 318, !- Component 1 Inlet Node Name + Node 319; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 45, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 45, !- Component 1 Name + Node 323, !- Component 1 Inlet Node Name + Node 324; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 46, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 46, !- Component 1 Name + Node 328, !- Component 1 Inlet Node Name + Node 329; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 47, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 47, !- Component 1 Name + Node 333, !- Component 1 Inlet Node Name + Node 334; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 48, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 48, !- Component 1 Name + Node 338, !- Component 1 Inlet Node Name + Node 339; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 49, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 49, !- Component 1 Name + Node 343, !- Component 1 Inlet Node Name + Node 344; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 50, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 50, !- Component 1 Name + Node 348, !- Component 1 Inlet Node Name + Node 349; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 51, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 51, !- Component 1 Name + Node 353, !- Component 1 Inlet Node Name + Node 354; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 52, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 52, !- Component 1 Name + Node 358, !- Component 1 Inlet Node Name + Node 359; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 53, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 53, !- Component 1 Name + Node 363, !- Component 1 Inlet Node Name + Node 364; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 54, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 54, !- Component 1 Name + Node 368, !- Component 1 Inlet Node Name + Node 369; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 55, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 55, !- Component 1 Name + Node 373, !- Component 1 Inlet Node Name + Node 374; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Branch 56, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Coil Heating Water 56, !- Component 1 Name + Node 378, !- Component 1 Inlet Node Name + Node 379; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Boiler plant plant_loops-1904 Demand Bypass Pipe, !- Component 1 Name + Boiler plant plant_loops-1904 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + Boiler plant plant_loops-1904 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Boiler plant plant_loops-1904 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Boiler plant plant_loops-1904 Demand Outlet Pipe, !- Component 1 Name + Boiler plant plant_loops-1904 Demand Outlet Pipe Node, !- Component 1 Inlet Node Name + Node 88; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Cooling: Pump for Chiller, !- Component 1 Name + Node 70, !- Component 1 Inlet Node Name + Node 76; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Supply Branch 1, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type + Chiller for plant plant_loops-1903, !- Component 1 Name + Node 72, !- Component 1 Inlet Node Name + Node 78; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Supply Branch 2, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 6, !- Component 1 Name + Node 81, !- Component 1 Inlet Node Name + Node 82; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 7, !- Component 1 Name + Node 83, !- Component 1 Inlet Node Name + Node 71; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Cooling: Demand Inlet Pump, !- Component 1 Name + Node 73, !- Component 1 Inlet Node Name + Node 77; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Demand Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + Coil Cooling Water 1, !- Component 1 Name + Node 75, !- Component 1 Inlet Node Name + Node 105; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Chiller plant plant_loops-1903 Demand Bypass Pipe, !- Component 1 Name + Chiller plant plant_loops-1903 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + Chiller plant plant_loops-1903 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Chiller plant plant_loops-1903 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Chiller plant plant_loops-1903 Demand Outlet Pipe, !- Component 1 Name + Chiller plant plant_loops-1903 Demand Outlet Pipe Node, !- Component 1 Inlet Node Name + Node 74; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + Cooling: Pump for Condenser, !- Component 1 Name + Node 56, !- Component 1 Inlet Node Name + Node 63; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Supply Branch 1, !- Name + , !- Pressure Drop Curve Name + CoolingTower:VariableSpeed, !- Component 1 Object Type + Cooling Tower Variable Speed 1, !- Component 1 Name + Node 58, !- Component 1 Inlet Node Name + Node 62; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Supply Branch 2, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 1, !- Component 1 Name + Node 64, !- Component 1 Inlet Node Name + Node 65; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 2, !- Component 1 Name + Node 66, !- Component 1 Inlet Node Name + Node 57; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 3, !- Component 1 Name + Node 59, !- Component 1 Inlet Node Name + Node 67; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Demand Branch 1, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 4, !- Component 1 Name + Node 61, !- Component 1 Inlet Node Name + Node 68; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Demand Branch 2, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:ReformulatedEIR, !- Component 1 Object Type + Chiller for plant plant_loops-1903, !- Component 1 Name + Node 79, !- Component 1 Inlet Node Name + Node 80; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Condenser Plant plant_loops-1902 Demand Bypass Pipe, !- Component 1 Name + Condenser Plant plant_loops-1902 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + Condenser Plant plant_loops-1902 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + Condenser Plant plant_loops-1902 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + Pipe Adiabatic 5, !- Component 1 Name + Node 69, !- Component 1 Inlet Node Name + Node 60; !- Component 1 Outlet Node Name + +!- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== + + BranchList, + AirLoop air_handlers-2963 Supply Branches, !- Name + AirLoop air_handlers-2963 Main Branch; !- Branch 1 Name + + BranchList, + Boiler plant plant_loops-1904 Supply Branches, !- Name + Boiler plant plant_loops-1904 Supply Inlet Branch, !- Branch 1 Name + Boiler plant plant_loops-1904 Supply Branch 1, !- Branch 2 Name + Boiler plant plant_loops-1904 Supply Branch 2, !- Branch 3 Name + Boiler plant plant_loops-1904 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + Boiler plant plant_loops-1904 Demand Branches, !- Name + Boiler plant plant_loops-1904 Demand Inlet Branch, !- Branch 1 Name + Boiler plant plant_loops-1904 Demand Branch 1, !- Branch 2 Name + Boiler plant plant_loops-1904 Demand Branch 2, !- Branch 3 Name + Boiler plant plant_loops-1904 Demand Branch 3, !- Branch 4 Name + Boiler plant plant_loops-1904 Demand Branch 4, !- Branch 5 Name + Boiler plant plant_loops-1904 Demand Branch 5, !- Branch 6 Name + Boiler plant plant_loops-1904 Demand Branch 6, !- Branch 7 Name + Boiler plant plant_loops-1904 Demand Branch 7, !- Branch 8 Name + Boiler plant plant_loops-1904 Demand Branch 8, !- Branch 9 Name + Boiler plant plant_loops-1904 Demand Branch 9, !- Branch 10 Name + Boiler plant plant_loops-1904 Demand Branch 10, !- Branch 11 Name + Boiler plant plant_loops-1904 Demand Branch 11, !- Branch 12 Name + Boiler plant plant_loops-1904 Demand Branch 12, !- Branch 13 Name + Boiler plant plant_loops-1904 Demand Branch 13, !- Branch 14 Name + Boiler plant plant_loops-1904 Demand Branch 14, !- Branch 15 Name + Boiler plant plant_loops-1904 Demand Branch 15, !- Branch 16 Name + Boiler plant plant_loops-1904 Demand Branch 16, !- Branch 17 Name + Boiler plant plant_loops-1904 Demand Branch 17, !- Branch 18 Name + Boiler plant plant_loops-1904 Demand Branch 18, !- Branch 19 Name + Boiler plant plant_loops-1904 Demand Branch 19, !- Branch 20 Name + Boiler plant plant_loops-1904 Demand Branch 20, !- Branch 21 Name + Boiler plant plant_loops-1904 Demand Branch 21, !- Branch 22 Name + Boiler plant plant_loops-1904 Demand Branch 22, !- Branch 23 Name + Boiler plant plant_loops-1904 Demand Branch 23, !- Branch 24 Name + Boiler plant plant_loops-1904 Demand Branch 24, !- Branch 25 Name + Boiler plant plant_loops-1904 Demand Branch 25, !- Branch 26 Name + Boiler plant plant_loops-1904 Demand Branch 26, !- Branch 27 Name + Boiler plant plant_loops-1904 Demand Branch 27, !- Branch 28 Name + Boiler plant plant_loops-1904 Demand Branch 28, !- Branch 29 Name + Boiler plant plant_loops-1904 Demand Branch 29, !- Branch 30 Name + Boiler plant plant_loops-1904 Demand Branch 30, !- Branch 31 Name + Boiler plant plant_loops-1904 Demand Branch 31, !- Branch 32 Name + Boiler plant plant_loops-1904 Demand Branch 32, !- Branch 33 Name + Boiler plant plant_loops-1904 Demand Branch 33, !- Branch 34 Name + Boiler plant plant_loops-1904 Demand Branch 34, !- Branch 35 Name + Boiler plant plant_loops-1904 Demand Branch 35, !- Branch 36 Name + Boiler plant plant_loops-1904 Demand Branch 36, !- Branch 37 Name + Boiler plant plant_loops-1904 Demand Branch 37, !- Branch 38 Name + Boiler plant plant_loops-1904 Demand Branch 38, !- Branch 39 Name + Boiler plant plant_loops-1904 Demand Branch 39, !- Branch 40 Name + Boiler plant plant_loops-1904 Demand Branch 40, !- Branch 41 Name + Boiler plant plant_loops-1904 Demand Branch 41, !- Branch 42 Name + Boiler plant plant_loops-1904 Demand Branch 42, !- Branch 43 Name + Boiler plant plant_loops-1904 Demand Branch 43, !- Branch 44 Name + Boiler plant plant_loops-1904 Demand Branch 44, !- Branch 45 Name + Boiler plant plant_loops-1904 Demand Branch 45, !- Branch 46 Name + Boiler plant plant_loops-1904 Demand Branch 46, !- Branch 47 Name + Boiler plant plant_loops-1904 Demand Branch 47, !- Branch 48 Name + Boiler plant plant_loops-1904 Demand Branch 48, !- Branch 49 Name + Boiler plant plant_loops-1904 Demand Branch 49, !- Branch 50 Name + Boiler plant plant_loops-1904 Demand Branch 50, !- Branch 51 Name + Boiler plant plant_loops-1904 Demand Branch 51, !- Branch 52 Name + Boiler plant plant_loops-1904 Demand Branch 52, !- Branch 53 Name + Boiler plant plant_loops-1904 Demand Branch 53, !- Branch 54 Name + Boiler plant plant_loops-1904 Demand Branch 54, !- Branch 55 Name + Boiler plant plant_loops-1904 Demand Branch 55, !- Branch 56 Name + Boiler plant plant_loops-1904 Demand Branch 56, !- Branch 57 Name + Boiler plant plant_loops-1904 Demand Bypass Branch, !- Branch 58 Name + Boiler plant plant_loops-1904 Demand Outlet Branch; !- Branch 59 Name + + BranchList, + Chiller plant plant_loops-1903 Supply Branches, !- Name + Chiller plant plant_loops-1903 Supply Inlet Branch, !- Branch 1 Name + Chiller plant plant_loops-1903 Supply Branch 1, !- Branch 2 Name + Chiller plant plant_loops-1903 Supply Branch 2, !- Branch 3 Name + Chiller plant plant_loops-1903 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + Chiller plant plant_loops-1903 Demand Branches, !- Name + Chiller plant plant_loops-1903 Demand Inlet Branch, !- Branch 1 Name + Chiller plant plant_loops-1903 Demand Branch 1, !- Branch 2 Name + Chiller plant plant_loops-1903 Demand Bypass Branch, !- Branch 3 Name + Chiller plant plant_loops-1903 Demand Outlet Branch; !- Branch 4 Name + + BranchList, + Condenser Plant plant_loops-1902 Supply Branches, !- Name + Condenser Plant plant_loops-1902 Supply Inlet Branch, !- Branch 1 Name + Condenser Plant plant_loops-1902 Supply Branch 1, !- Branch 2 Name + Condenser Plant plant_loops-1902 Supply Branch 2, !- Branch 3 Name + Condenser Plant plant_loops-1902 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + Condenser Plant plant_loops-1902 Demand Branches, !- Name + Condenser Plant plant_loops-1902 Demand Inlet Branch, !- Branch 1 Name + Condenser Plant plant_loops-1902 Demand Branch 1, !- Branch 2 Name + Condenser Plant plant_loops-1902 Demand Branch 2, !- Branch 3 Name + Condenser Plant plant_loops-1902 Demand Bypass Branch, !- Branch 4 Name + Condenser Plant plant_loops-1902 Demand Outlet Branch; !- Branch 5 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== + + Connector:Splitter, + Boiler plant plant_loops-1904 Supply Splitter, !- Name + Boiler plant plant_loops-1904 Supply Inlet Branch, !- Inlet Branch Name + Boiler plant plant_loops-1904 Supply Branch 1, !- Outlet Branch 1 Name + Boiler plant plant_loops-1904 Supply Branch 2; !- Outlet Branch 2 Name + + Connector:Splitter, + Boiler plant plant_loops-1904 Demand Splitter, !- Name + Boiler plant plant_loops-1904 Demand Inlet Branch, !- Inlet Branch Name + Boiler plant plant_loops-1904 Demand Branch 1, !- Outlet Branch 1 Name + Boiler plant plant_loops-1904 Demand Branch 2, !- Outlet Branch 2 Name + Boiler plant plant_loops-1904 Demand Branch 3, !- Outlet Branch 3 Name + Boiler plant plant_loops-1904 Demand Branch 4, !- Outlet Branch 4 Name + Boiler plant plant_loops-1904 Demand Branch 5, !- Outlet Branch 5 Name + Boiler plant plant_loops-1904 Demand Branch 6, !- Outlet Branch 6 Name + Boiler plant plant_loops-1904 Demand Branch 7, !- Outlet Branch 7 Name + Boiler plant plant_loops-1904 Demand Branch 8, !- Outlet Branch 8 Name + Boiler plant plant_loops-1904 Demand Branch 9, !- Outlet Branch 9 Name + Boiler plant plant_loops-1904 Demand Branch 10, !- Outlet Branch 10 Name + Boiler plant plant_loops-1904 Demand Branch 11, !- Outlet Branch 11 Name + Boiler plant plant_loops-1904 Demand Branch 12, !- Outlet Branch 12 Name + Boiler plant plant_loops-1904 Demand Branch 13, !- Outlet Branch 13 Name + Boiler plant plant_loops-1904 Demand Branch 14, !- Outlet Branch 14 Name + Boiler plant plant_loops-1904 Demand Branch 15, !- Outlet Branch 15 Name + Boiler plant plant_loops-1904 Demand Branch 16, !- Outlet Branch 16 Name + Boiler plant plant_loops-1904 Demand Branch 17, !- Outlet Branch 17 Name + Boiler plant plant_loops-1904 Demand Branch 18, !- Outlet Branch 18 Name + Boiler plant plant_loops-1904 Demand Branch 19, !- Outlet Branch 19 Name + Boiler plant plant_loops-1904 Demand Branch 20, !- Outlet Branch 20 Name + Boiler plant plant_loops-1904 Demand Branch 21, !- Outlet Branch 21 Name + Boiler plant plant_loops-1904 Demand Branch 22, !- Outlet Branch 22 Name + Boiler plant plant_loops-1904 Demand Branch 23, !- Outlet Branch 23 Name + Boiler plant plant_loops-1904 Demand Branch 24, !- Outlet Branch 24 Name + Boiler plant plant_loops-1904 Demand Branch 25, !- Outlet Branch 25 Name + Boiler plant plant_loops-1904 Demand Branch 26, !- Outlet Branch 26 Name + Boiler plant plant_loops-1904 Demand Branch 27, !- Outlet Branch 27 Name + Boiler plant plant_loops-1904 Demand Branch 28, !- Outlet Branch 28 Name + Boiler plant plant_loops-1904 Demand Branch 29, !- Outlet Branch 29 Name + Boiler plant plant_loops-1904 Demand Branch 30, !- Outlet Branch 30 Name + Boiler plant plant_loops-1904 Demand Branch 31, !- Outlet Branch 31 Name + Boiler plant plant_loops-1904 Demand Branch 32, !- Outlet Branch 32 Name + Boiler plant plant_loops-1904 Demand Branch 33, !- Outlet Branch 33 Name + Boiler plant plant_loops-1904 Demand Branch 34, !- Outlet Branch 34 Name + Boiler plant plant_loops-1904 Demand Branch 35, !- Outlet Branch 35 Name + Boiler plant plant_loops-1904 Demand Branch 36, !- Outlet Branch 36 Name + Boiler plant plant_loops-1904 Demand Branch 37, !- Outlet Branch 37 Name + Boiler plant plant_loops-1904 Demand Branch 38, !- Outlet Branch 38 Name + Boiler plant plant_loops-1904 Demand Branch 39, !- Outlet Branch 39 Name + Boiler plant plant_loops-1904 Demand Branch 40, !- Outlet Branch 40 Name + Boiler plant plant_loops-1904 Demand Branch 41, !- Outlet Branch 41 Name + Boiler plant plant_loops-1904 Demand Branch 42, !- Outlet Branch 42 Name + Boiler plant plant_loops-1904 Demand Branch 43, !- Outlet Branch 43 Name + Boiler plant plant_loops-1904 Demand Branch 44, !- Outlet Branch 44 Name + Boiler plant plant_loops-1904 Demand Branch 45, !- Outlet Branch 45 Name + Boiler plant plant_loops-1904 Demand Branch 46, !- Outlet Branch 46 Name + Boiler plant plant_loops-1904 Demand Branch 47, !- Outlet Branch 47 Name + Boiler plant plant_loops-1904 Demand Branch 48, !- Outlet Branch 48 Name + Boiler plant plant_loops-1904 Demand Branch 49, !- Outlet Branch 49 Name + Boiler plant plant_loops-1904 Demand Branch 50, !- Outlet Branch 50 Name + Boiler plant plant_loops-1904 Demand Branch 51, !- Outlet Branch 51 Name + Boiler plant plant_loops-1904 Demand Branch 52, !- Outlet Branch 52 Name + Boiler plant plant_loops-1904 Demand Branch 53, !- Outlet Branch 53 Name + Boiler plant plant_loops-1904 Demand Branch 54, !- Outlet Branch 54 Name + Boiler plant plant_loops-1904 Demand Branch 55, !- Outlet Branch 55 Name + Boiler plant plant_loops-1904 Demand Branch 56, !- Outlet Branch 56 Name + Boiler plant plant_loops-1904 Demand Bypass Branch; !- Outlet Branch 57 Name + + Connector:Splitter, + Chiller plant plant_loops-1903 Supply Splitter, !- Name + Chiller plant plant_loops-1903 Supply Inlet Branch, !- Inlet Branch Name + Chiller plant plant_loops-1903 Supply Branch 1, !- Outlet Branch 1 Name + Chiller plant plant_loops-1903 Supply Branch 2; !- Outlet Branch 2 Name + + Connector:Splitter, + Chiller plant plant_loops-1903 Demand Splitter, !- Name + Chiller plant plant_loops-1903 Demand Inlet Branch, !- Inlet Branch Name + Chiller plant plant_loops-1903 Demand Branch 1, !- Outlet Branch 1 Name + Chiller plant plant_loops-1903 Demand Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + Condenser Plant plant_loops-1902 Supply Splitter, !- Name + Condenser Plant plant_loops-1902 Supply Inlet Branch, !- Inlet Branch Name + Condenser Plant plant_loops-1902 Supply Branch 1, !- Outlet Branch 1 Name + Condenser Plant plant_loops-1902 Supply Branch 2; !- Outlet Branch 2 Name + + Connector:Splitter, + Condenser Plant plant_loops-1902 Demand Splitter, !- Name + Condenser Plant plant_loops-1902 Demand Inlet Branch, !- Inlet Branch Name + Condenser Plant plant_loops-1902 Demand Branch 1, !- Outlet Branch 1 Name + Condenser Plant plant_loops-1902 Demand Branch 2, !- Outlet Branch 2 Name + Condenser Plant plant_loops-1902 Demand Bypass Branch; !- Outlet Branch 3 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== + + Connector:Mixer, + Boiler plant plant_loops-1904 Supply Mixer, !- Name + Boiler plant plant_loops-1904 Supply Outlet Branch, !- Outlet Branch Name + Boiler plant plant_loops-1904 Supply Branch 1, !- Inlet Branch 1 Name + Boiler plant plant_loops-1904 Supply Branch 2; !- Inlet Branch 2 Name + + Connector:Mixer, + Boiler plant plant_loops-1904 Demand Mixer, !- Name + Boiler plant plant_loops-1904 Demand Outlet Branch, !- Outlet Branch Name + Boiler plant plant_loops-1904 Demand Branch 1, !- Inlet Branch 1 Name + Boiler plant plant_loops-1904 Demand Branch 2, !- Inlet Branch 2 Name + Boiler plant plant_loops-1904 Demand Branch 3, !- Inlet Branch 3 Name + Boiler plant plant_loops-1904 Demand Branch 4, !- Inlet Branch 4 Name + Boiler plant plant_loops-1904 Demand Branch 5, !- Inlet Branch 5 Name + Boiler plant plant_loops-1904 Demand Branch 6, !- Inlet Branch 6 Name + Boiler plant plant_loops-1904 Demand Branch 7, !- Inlet Branch 7 Name + Boiler plant plant_loops-1904 Demand Branch 8, !- Inlet Branch 8 Name + Boiler plant plant_loops-1904 Demand Branch 9, !- Inlet Branch 9 Name + Boiler plant plant_loops-1904 Demand Branch 10, !- Inlet Branch 10 Name + Boiler plant plant_loops-1904 Demand Branch 11, !- Inlet Branch 11 Name + Boiler plant plant_loops-1904 Demand Branch 12, !- Inlet Branch 12 Name + Boiler plant plant_loops-1904 Demand Branch 13, !- Inlet Branch 13 Name + Boiler plant plant_loops-1904 Demand Branch 14, !- Inlet Branch 14 Name + Boiler plant plant_loops-1904 Demand Branch 15, !- Inlet Branch 15 Name + Boiler plant plant_loops-1904 Demand Branch 16, !- Inlet Branch 16 Name + Boiler plant plant_loops-1904 Demand Branch 17, !- Inlet Branch 17 Name + Boiler plant plant_loops-1904 Demand Branch 18, !- Inlet Branch 18 Name + Boiler plant plant_loops-1904 Demand Branch 19, !- Inlet Branch 19 Name + Boiler plant plant_loops-1904 Demand Branch 20, !- Inlet Branch 20 Name + Boiler plant plant_loops-1904 Demand Branch 21, !- Inlet Branch 21 Name + Boiler plant plant_loops-1904 Demand Branch 22, !- Inlet Branch 22 Name + Boiler plant plant_loops-1904 Demand Branch 23, !- Inlet Branch 23 Name + Boiler plant plant_loops-1904 Demand Branch 24, !- Inlet Branch 24 Name + Boiler plant plant_loops-1904 Demand Branch 25, !- Inlet Branch 25 Name + Boiler plant plant_loops-1904 Demand Branch 26, !- Inlet Branch 26 Name + Boiler plant plant_loops-1904 Demand Branch 27, !- Inlet Branch 27 Name + Boiler plant plant_loops-1904 Demand Branch 28, !- Inlet Branch 28 Name + Boiler plant plant_loops-1904 Demand Branch 29, !- Inlet Branch 29 Name + Boiler plant plant_loops-1904 Demand Branch 30, !- Inlet Branch 30 Name + Boiler plant plant_loops-1904 Demand Branch 31, !- Inlet Branch 31 Name + Boiler plant plant_loops-1904 Demand Branch 32, !- Inlet Branch 32 Name + Boiler plant plant_loops-1904 Demand Branch 33, !- Inlet Branch 33 Name + Boiler plant plant_loops-1904 Demand Branch 34, !- Inlet Branch 34 Name + Boiler plant plant_loops-1904 Demand Branch 35, !- Inlet Branch 35 Name + Boiler plant plant_loops-1904 Demand Branch 36, !- Inlet Branch 36 Name + Boiler plant plant_loops-1904 Demand Branch 37, !- Inlet Branch 37 Name + Boiler plant plant_loops-1904 Demand Branch 38, !- Inlet Branch 38 Name + Boiler plant plant_loops-1904 Demand Branch 39, !- Inlet Branch 39 Name + Boiler plant plant_loops-1904 Demand Branch 40, !- Inlet Branch 40 Name + Boiler plant plant_loops-1904 Demand Branch 41, !- Inlet Branch 41 Name + Boiler plant plant_loops-1904 Demand Branch 42, !- Inlet Branch 42 Name + Boiler plant plant_loops-1904 Demand Branch 43, !- Inlet Branch 43 Name + Boiler plant plant_loops-1904 Demand Branch 44, !- Inlet Branch 44 Name + Boiler plant plant_loops-1904 Demand Branch 45, !- Inlet Branch 45 Name + Boiler plant plant_loops-1904 Demand Branch 46, !- Inlet Branch 46 Name + Boiler plant plant_loops-1904 Demand Branch 47, !- Inlet Branch 47 Name + Boiler plant plant_loops-1904 Demand Branch 48, !- Inlet Branch 48 Name + Boiler plant plant_loops-1904 Demand Branch 49, !- Inlet Branch 49 Name + Boiler plant plant_loops-1904 Demand Branch 50, !- Inlet Branch 50 Name + Boiler plant plant_loops-1904 Demand Branch 51, !- Inlet Branch 51 Name + Boiler plant plant_loops-1904 Demand Branch 52, !- Inlet Branch 52 Name + Boiler plant plant_loops-1904 Demand Branch 53, !- Inlet Branch 53 Name + Boiler plant plant_loops-1904 Demand Branch 54, !- Inlet Branch 54 Name + Boiler plant plant_loops-1904 Demand Branch 55, !- Inlet Branch 55 Name + Boiler plant plant_loops-1904 Demand Branch 56, !- Inlet Branch 56 Name + Boiler plant plant_loops-1904 Demand Bypass Branch; !- Inlet Branch 57 Name + + Connector:Mixer, + Chiller plant plant_loops-1903 Supply Mixer, !- Name + Chiller plant plant_loops-1903 Supply Outlet Branch, !- Outlet Branch Name + Chiller plant plant_loops-1903 Supply Branch 1, !- Inlet Branch 1 Name + Chiller plant plant_loops-1903 Supply Branch 2; !- Inlet Branch 2 Name + + Connector:Mixer, + Chiller plant plant_loops-1903 Demand Mixer, !- Name + Chiller plant plant_loops-1903 Demand Outlet Branch, !- Outlet Branch Name + Chiller plant plant_loops-1903 Demand Branch 1, !- Inlet Branch 1 Name + Chiller plant plant_loops-1903 Demand Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + Condenser Plant plant_loops-1902 Supply Mixer, !- Name + Condenser Plant plant_loops-1902 Supply Outlet Branch, !- Outlet Branch Name + Condenser Plant plant_loops-1902 Supply Branch 1, !- Inlet Branch 1 Name + Condenser Plant plant_loops-1902 Supply Branch 2; !- Inlet Branch 2 Name + + Connector:Mixer, + Condenser Plant plant_loops-1902 Demand Mixer, !- Name + Condenser Plant plant_loops-1902 Demand Outlet Branch, !- Outlet Branch Name + Condenser Plant plant_loops-1902 Demand Branch 1, !- Inlet Branch 1 Name + Condenser Plant plant_loops-1902 Demand Branch 2, !- Inlet Branch 2 Name + Condenser Plant plant_loops-1902 Demand Bypass Branch; !- Inlet Branch 3 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== + + ConnectorList, + Boiler plant plant_loops-1904 Supply Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Boiler plant plant_loops-1904 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Boiler plant plant_loops-1904 Supply Mixer; !- Connector 2 Name + + ConnectorList, + Boiler plant plant_loops-1904 Demand Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Boiler plant plant_loops-1904 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Boiler plant plant_loops-1904 Demand Mixer; !- Connector 2 Name + + ConnectorList, + Chiller plant plant_loops-1903 Supply Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Chiller plant plant_loops-1903 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Chiller plant plant_loops-1903 Supply Mixer; !- Connector 2 Name + + ConnectorList, + Chiller plant plant_loops-1903 Demand Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Chiller plant plant_loops-1903 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Chiller plant plant_loops-1903 Demand Mixer; !- Connector 2 Name + + ConnectorList, + Condenser Plant plant_loops-1902 Supply Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Condenser Plant plant_loops-1902 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Condenser Plant plant_loops-1902 Supply Mixer; !- Connector 2 Name + + ConnectorList, + Condenser Plant plant_loops-1902 Demand Connector List, !- Name + Connector:Splitter, !- Connector 1 Object Type + Condenser Plant plant_loops-1902 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + Condenser Plant plant_loops-1902 Demand Mixer; !- Connector 2 Name + +!- =========== ALL OBJECTS IN CLASS: NODELIST =========== + + NodeList, + blocks-3644_office_1_Core Inlet Node List, !- Name + Node 128; !- Node 1 Name + + NodeList, + blocks-3644_office_1_Core Return Node List, !- Name + Node 129; !- Node 1 Name + + NodeList, + blocks-3644_office_1_East Perimeter Inlet Node List, !- Name + Node 118; !- Node 1 Name + + NodeList, + blocks-3644_office_1_East Perimeter Return Node List, !- Name + Node 119; !- Node 1 Name + + NodeList, + blocks-3644_office_1_North Perimeter Inlet Node List, !- Name + Node 113; !- Node 1 Name + + NodeList, + blocks-3644_office_1_North Perimeter Return Node List, !- Name + Node 114; !- Node 1 Name + + NodeList, + blocks-3644_office_1_South Perimeter Inlet Node List, !- Name + Node 123; !- Node 1 Name + + NodeList, + blocks-3644_office_1_South Perimeter Return Node List, !- Name + Node 124; !- Node 1 Name + + NodeList, + blocks-3644_office_1_West Perimeter Inlet Node List, !- Name + Node 99; !- Node 1 Name + + NodeList, + blocks-3644_office_1_West Perimeter Return Node List, !- Name + Node 109; !- Node 1 Name + + NodeList, + blocks-3644_office_2_Core Inlet Node List, !- Name + Node 153; !- Node 1 Name + + NodeList, + blocks-3644_office_2_Core Return Node List, !- Name + Node 154; !- Node 1 Name + + NodeList, + blocks-3644_office_2_East Perimeter Inlet Node List, !- Name + Node 143; !- Node 1 Name + + NodeList, + blocks-3644_office_2_East Perimeter Return Node List, !- Name + Node 144; !- Node 1 Name + + NodeList, + blocks-3644_office_2_North Perimeter Inlet Node List, !- Name + Node 138; !- Node 1 Name + + NodeList, + blocks-3644_office_2_North Perimeter Return Node List, !- Name + Node 139; !- Node 1 Name + + NodeList, + blocks-3644_office_2_South Perimeter Inlet Node List, !- Name + Node 148; !- Node 1 Name + + NodeList, + blocks-3644_office_2_South Perimeter Return Node List, !- Name + Node 149; !- Node 1 Name + + NodeList, + blocks-3644_office_2_West Perimeter Inlet Node List, !- Name + Node 133; !- Node 1 Name + + NodeList, + blocks-3644_office_2_West Perimeter Return Node List, !- Name + Node 134; !- Node 1 Name + + NodeList, + blocks-3645_office_1_Core Inlet Node List, !- Name + Node 180; !- Node 1 Name + + NodeList, + blocks-3645_office_1_Core Return Node List, !- Name + Node 181; !- Node 1 Name + + NodeList, + blocks-3645_office_1_East Perimeter Inlet Node List, !- Name + Node 170; !- Node 1 Name + + NodeList, + blocks-3645_office_1_East Perimeter Return Node List, !- Name + Node 171; !- Node 1 Name + + NodeList, + blocks-3645_office_1_North Perimeter Inlet Node List, !- Name + Node 165; !- Node 1 Name + + NodeList, + blocks-3645_office_1_North Perimeter Return Node List, !- Name + Node 166; !- Node 1 Name + + NodeList, + blocks-3645_office_1_South Perimeter Inlet Node List, !- Name + Node 175; !- Node 1 Name + + NodeList, + blocks-3645_office_1_South Perimeter Return Node List, !- Name + Node 176; !- Node 1 Name + + NodeList, + blocks-3645_office_1_West Perimeter Inlet Node List, !- Name + Node 160; !- Node 1 Name + + NodeList, + blocks-3645_office_1_West Perimeter Return Node List, !- Name + Node 161; !- Node 1 Name + + NodeList, + blocks-3645_office_2_Core Inlet Node List, !- Name + Node 205; !- Node 1 Name + + NodeList, + blocks-3645_office_2_Core Return Node List, !- Name + Node 206; !- Node 1 Name + + NodeList, + blocks-3645_office_2_East Perimeter Inlet Node List, !- Name + Node 195; !- Node 1 Name + + NodeList, + blocks-3645_office_2_East Perimeter Return Node List, !- Name + Node 196; !- Node 1 Name + + NodeList, + blocks-3645_office_2_North Perimeter Inlet Node List, !- Name + Node 190; !- Node 1 Name + + NodeList, + blocks-3645_office_2_North Perimeter Return Node List, !- Name + Node 191; !- Node 1 Name + + NodeList, + blocks-3645_office_2_South Perimeter Inlet Node List, !- Name + Node 200; !- Node 1 Name + + NodeList, + blocks-3645_office_2_South Perimeter Return Node List, !- Name + Node 201; !- Node 1 Name + + NodeList, + blocks-3645_office_2_West Perimeter Inlet Node List, !- Name + Node 185; !- Node 1 Name + + NodeList, + blocks-3645_office_2_West Perimeter Return Node List, !- Name + Node 186; !- Node 1 Name + + NodeList, + blocks-3645_office_3_Core Inlet Node List, !- Name + Node 230; !- Node 1 Name + + NodeList, + blocks-3645_office_3_Core Return Node List, !- Name + Node 231; !- Node 1 Name + + NodeList, + blocks-3645_office_3_East Perimeter Inlet Node List, !- Name + Node 220; !- Node 1 Name + + NodeList, + blocks-3645_office_3_East Perimeter Return Node List, !- Name + Node 221; !- Node 1 Name + + NodeList, + blocks-3645_office_3_North Perimeter Inlet Node List, !- Name + Node 215; !- Node 1 Name + + NodeList, + blocks-3645_office_3_North Perimeter Return Node List, !- Name + Node 216; !- Node 1 Name + + NodeList, + blocks-3645_office_3_South Perimeter Inlet Node List, !- Name + Node 225; !- Node 1 Name + + NodeList, + blocks-3645_office_3_South Perimeter Return Node List, !- Name + Node 226; !- Node 1 Name + + NodeList, + blocks-3645_office_3_West Perimeter Inlet Node List, !- Name + Node 210; !- Node 1 Name + + NodeList, + blocks-3645_office_3_West Perimeter Return Node List, !- Name + Node 211; !- Node 1 Name + + NodeList, + blocks-3645_office_4_Core Inlet Node List, !- Name + Node 255; !- Node 1 Name + + NodeList, + blocks-3645_office_4_Core Return Node List, !- Name + Node 256; !- Node 1 Name + + NodeList, + blocks-3645_office_4_East Perimeter Inlet Node List, !- Name + Node 245; !- Node 1 Name + + NodeList, + blocks-3645_office_4_East Perimeter Return Node List, !- Name + Node 246; !- Node 1 Name + + NodeList, + blocks-3645_office_4_North Perimeter Inlet Node List, !- Name + Node 240; !- Node 1 Name + + NodeList, + blocks-3645_office_4_North Perimeter Return Node List, !- Name + Node 241; !- Node 1 Name + + NodeList, + blocks-3645_office_4_South Perimeter Inlet Node List, !- Name + Node 250; !- Node 1 Name + + NodeList, + blocks-3645_office_4_South Perimeter Return Node List, !- Name + Node 251; !- Node 1 Name + + NodeList, + blocks-3645_office_4_West Perimeter Inlet Node List, !- Name + Node 235; !- Node 1 Name + + NodeList, + blocks-3645_office_4_West Perimeter Return Node List, !- Name + Node 236; !- Node 1 Name + + NodeList, + blocks-3645_office_5_Core Inlet Node List, !- Name + Node 280; !- Node 1 Name + + NodeList, + blocks-3645_office_5_Core Return Node List, !- Name + Node 281; !- Node 1 Name + + NodeList, + blocks-3645_office_5_East Perimeter Inlet Node List, !- Name + Node 270; !- Node 1 Name + + NodeList, + blocks-3645_office_5_East Perimeter Return Node List, !- Name + Node 271; !- Node 1 Name + + NodeList, + blocks-3645_office_5_North Perimeter Inlet Node List, !- Name + Node 265; !- Node 1 Name + + NodeList, + blocks-3645_office_5_North Perimeter Return Node List, !- Name + Node 266; !- Node 1 Name + + NodeList, + blocks-3645_office_5_South Perimeter Inlet Node List, !- Name + Node 275; !- Node 1 Name + + NodeList, + blocks-3645_office_5_South Perimeter Return Node List, !- Name + Node 276; !- Node 1 Name + + NodeList, + blocks-3645_office_5_West Perimeter Inlet Node List, !- Name + Node 260; !- Node 1 Name + + NodeList, + blocks-3645_office_5_West Perimeter Return Node List, !- Name + Node 261; !- Node 1 Name + + NodeList, + blocks-3645_office_6_Core Inlet Node List, !- Name + Node 305; !- Node 1 Name + + NodeList, + blocks-3645_office_6_Core Return Node List, !- Name + Node 306; !- Node 1 Name + + NodeList, + blocks-3645_office_6_East Perimeter Inlet Node List, !- Name + Node 295; !- Node 1 Name + + NodeList, + blocks-3645_office_6_East Perimeter Return Node List, !- Name + Node 296; !- Node 1 Name + + NodeList, + blocks-3645_office_6_North Perimeter Inlet Node List, !- Name + Node 290; !- Node 1 Name + + NodeList, + blocks-3645_office_6_North Perimeter Return Node List, !- Name + Node 291; !- Node 1 Name + + NodeList, + blocks-3645_office_6_South Perimeter Inlet Node List, !- Name + Node 300; !- Node 1 Name + + NodeList, + blocks-3645_office_6_South Perimeter Return Node List, !- Name + Node 301; !- Node 1 Name + + NodeList, + blocks-3645_office_6_West Perimeter Inlet Node List, !- Name + Node 285; !- Node 1 Name + + NodeList, + blocks-3645_office_6_West Perimeter Return Node List, !- Name + Node 286; !- Node 1 Name + + NodeList, + blocks-3645_office_7_Core Inlet Node List, !- Name + Node 330; !- Node 1 Name + + NodeList, + blocks-3645_office_7_Core Return Node List, !- Name + Node 331; !- Node 1 Name + + NodeList, + blocks-3645_office_7_East Perimeter Inlet Node List, !- Name + Node 320; !- Node 1 Name + + NodeList, + blocks-3645_office_7_East Perimeter Return Node List, !- Name + Node 321; !- Node 1 Name + + NodeList, + blocks-3645_office_7_North Perimeter Inlet Node List, !- Name + Node 315; !- Node 1 Name + + NodeList, + blocks-3645_office_7_North Perimeter Return Node List, !- Name + Node 316; !- Node 1 Name + + NodeList, + blocks-3645_office_7_South Perimeter Inlet Node List, !- Name + Node 325; !- Node 1 Name + + NodeList, + blocks-3645_office_7_South Perimeter Return Node List, !- Name + Node 326; !- Node 1 Name + + NodeList, + blocks-3645_office_7_West Perimeter Inlet Node List, !- Name + Node 310; !- Node 1 Name + + NodeList, + blocks-3645_office_7_West Perimeter Return Node List, !- Name + Node 311; !- Node 1 Name + + NodeList, + blocks-3645_office_8_Core Inlet Node List, !- Name + Node 355; !- Node 1 Name + + NodeList, + blocks-3645_office_8_Core Return Node List, !- Name + Node 356; !- Node 1 Name + + NodeList, + blocks-3645_office_8_East Perimeter Inlet Node List, !- Name + Node 345; !- Node 1 Name + + NodeList, + blocks-3645_office_8_East Perimeter Return Node List, !- Name + Node 346; !- Node 1 Name + + NodeList, + blocks-3645_office_8_North Perimeter Inlet Node List, !- Name + Node 340; !- Node 1 Name + + NodeList, + blocks-3645_office_8_North Perimeter Return Node List, !- Name + Node 341; !- Node 1 Name + + NodeList, + blocks-3645_office_8_South Perimeter Inlet Node List, !- Name + Node 350; !- Node 1 Name + + NodeList, + blocks-3645_office_8_South Perimeter Return Node List, !- Name + Node 351; !- Node 1 Name + + NodeList, + blocks-3645_office_8_West Perimeter Inlet Node List, !- Name + Node 335; !- Node 1 Name + + NodeList, + blocks-3645_office_8_West Perimeter Return Node List, !- Name + Node 336; !- Node 1 Name + + NodeList, + blocks-3645_office_9_Core Inlet Node List, !- Name + Node 380; !- Node 1 Name + + NodeList, + blocks-3645_office_9_Core Return Node List, !- Name + Node 381; !- Node 1 Name + + NodeList, + blocks-3645_office_9_East Perimeter Inlet Node List, !- Name + Node 370; !- Node 1 Name + + NodeList, + blocks-3645_office_9_East Perimeter Return Node List, !- Name + Node 371; !- Node 1 Name + + NodeList, + blocks-3645_office_9_North Perimeter Inlet Node List, !- Name + Node 365; !- Node 1 Name + + NodeList, + blocks-3645_office_9_North Perimeter Return Node List, !- Name + Node 366; !- Node 1 Name + + NodeList, + blocks-3645_office_9_South Perimeter Inlet Node List, !- Name + Node 375; !- Node 1 Name + + NodeList, + blocks-3645_office_9_South Perimeter Return Node List, !- Name + Node 376; !- Node 1 Name + + NodeList, + blocks-3645_office_9_West Perimeter Inlet Node List, !- Name + Node 360; !- Node 1 Name + + NodeList, + blocks-3645_office_9_West Perimeter Return Node List, !- Name + Node 361; !- Node 1 Name + + NodeList, + AirLoop air_handlers-2963 Supply Outlet Nodes, !- Name + Node 96; !- Node 1 Name + + NodeList, + AirLoop air_handlers-2963 Demand Inlet Nodes, !- Name + Node 97; !- Node 1 Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE =========== + + OutdoorAir:Node, + Model Outdoor Air Node; !- Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODELIST =========== + + OutdoorAir:NodeList, + Node 100; !- Node or NodeList Name 1 + +!- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC =========== + + Pipe:Adiabatic, + Pipe Adiabatic 8, !- Name + Node 92, !- Inlet Node Name + Node 93; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 9, !- Name + Node 94, !- Inlet Node Name + Node 85; !- Outlet Node Name + + Pipe:Adiabatic, + Boiler plant plant_loops-1904 Demand Inlet Pipe, !- Name + Node 87, !- Inlet Node Name + Boiler plant plant_loops-1904 Demand Inlet Pipe Node; !- Outlet Node Name + + Pipe:Adiabatic, + Boiler plant plant_loops-1904 Demand Bypass Pipe, !- Name + Boiler plant plant_loops-1904 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + Boiler plant plant_loops-1904 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Boiler plant plant_loops-1904 Demand Outlet Pipe, !- Name + Boiler plant plant_loops-1904 Demand Outlet Pipe Node, !- Inlet Node Name + Node 88; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 6, !- Name + Node 81, !- Inlet Node Name + Node 82; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 7, !- Name + Node 83, !- Inlet Node Name + Node 71; !- Outlet Node Name + + Pipe:Adiabatic, + Chiller plant plant_loops-1903 Demand Bypass Pipe, !- Name + Chiller plant plant_loops-1903 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + Chiller plant plant_loops-1903 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Chiller plant plant_loops-1903 Demand Outlet Pipe, !- Name + Chiller plant plant_loops-1903 Demand Outlet Pipe Node, !- Inlet Node Name + Node 74; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 1, !- Name + Node 64, !- Inlet Node Name + Node 65; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 2, !- Name + Node 66, !- Inlet Node Name + Node 57; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 3, !- Name + Node 59, !- Inlet Node Name + Node 67; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 4, !- Name + Node 61, !- Inlet Node Name + Node 68; !- Outlet Node Name + + Pipe:Adiabatic, + Condenser Plant plant_loops-1902 Demand Bypass Pipe, !- Name + Condenser Plant plant_loops-1902 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + Condenser Plant plant_loops-1902 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + Pipe Adiabatic 5, !- Name + Node 69, !- Inlet Node Name + Node 60; !- Outlet Node Name + +!- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLESPEED =========== + + Pump:VariableSpeed, + Heating: Pump for Boiler,!- Name + Node 84, !- Inlet Node Name + Node 90, !- Outlet Node Name + Autosize, !- Design Maximum Flow Rate {m3/s} + 178218.301187775, !- Design Pump Head {Pa} + Autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 3.2485, !- Coefficient 2 of the Part Load Performance Curve + -4.7443, !- Coefficient 3 of the Part Load Performance Curve + 2.5294, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule + , !- Maximum Pressure Schedule + , !- Minimum RPM Schedule + , !- Maximum RPM Schedule + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + + Pump:VariableSpeed, + Cooling: Pump for Chiller, !- Name + Node 70, !- Inlet Node Name + Node 76, !- Outlet Node Name + Autosize, !- Design Maximum Flow Rate {m3/s} + 44554.5752969437, !- Design Pump Head {Pa} + Autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 3.2485, !- Coefficient 2 of the Part Load Performance Curve + -4.7443, !- Coefficient 3 of the Part Load Performance Curve + 2.5294, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule + , !- Maximum Pressure Schedule + , !- Minimum RPM Schedule + , !- Maximum RPM Schedule + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + + Pump:VariableSpeed, + Cooling: Demand Inlet Pump, !- Name + Node 73, !- Inlet Node Name + Node 77, !- Outlet Node Name + Autosize, !- Design Maximum Flow Rate {m3/s} + 133663.725890831, !- Design Pump Head {Pa} + Autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 0.5726, !- Coefficient 2 of the Part Load Performance Curve + -0.301, !- Coefficient 3 of the Part Load Performance Curve + 0.7347, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule + , !- Maximum Pressure Schedule + , !- Minimum RPM Schedule + , !- Maximum RPM Schedule + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + + Pump:VariableSpeed, + Cooling: Pump for Condenser, !- Name + Node 56, !- Inlet Node Name + Node 63, !- Outlet Node Name + Autosize, !- Design Maximum Flow Rate {m3/s} + 179332.165570198, !- Design Pump Head {Pa} + Autosize, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 0.5726, !- Coefficient 2 of the Part Load Performance Curve + -0.301, !- Coefficient 3 of the Part Load Performance Curve + 0.7347, !- Coefficient 4 of the Part Load Performance Curve + autosize, !- Design Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule + , !- Maximum Pressure Schedule + , !- Minimum RPM Schedule + , !- Maximum RPM Schedule + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W/((m3/s)-Pa)} + 0.2, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: BOILER:HOTWATER =========== + + Boiler:HotWater, + Boiler for plant plant_loops-1904, !- Name + NaturalGas, !- Fuel Type + Autosize, !- Nominal Capacity {W} + 0.8, !- Nominal Thermal Efficiency + , !- Efficiency Curve Temperature Evaluation Variable + , !- Normalized Boiler Efficiency Curve Name + Autosize, !- Design Water Flow Rate {m3/s} + 0, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + Node 86, !- Boiler Water Inlet Node Name + Node 91, !- Boiler Water Outlet Node Name + 99, !- Water Outlet Upper Temperature Limit {C} + ConstantFlow, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: Chiller:Electric:ReformulatedEIR =========== + + Curve:Linear, + Y=F(X), + 0, + 1, + 0, + 1; + + Schedule:Constant,CondenserdT,,10; + + Curve:Biquadratic, + WC_PD_2010_PB_CAPFT, !- Name + 0.9061171, !- Coefficient1 Constant + 0.0292267, !- Coefficient2 x + -0.0003665, !- Coefficient3 x**2 + -0.0009698, !- Coefficient4 y + -0.0000907, !- Coefficient5 y**2 + 0.0002535, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + + Curve:Biquadratic, + WC_PD_2010_PB_EIRFT, !- Name + 0.3617782, !- Coefficient1 Constant + -0.0230016, !- Coefficient2 x + 0.0009672, !- Coefficient3 x**2 + 0.0131801, !- Coefficient4 y + 0.0003761, !- Coefficient5 y**2 + -0.0007121, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 17.78, !- Minimum Value of y + 46.11; !- Maximum Value of y + + Curve:Bicubic, + WC_PD_150TO300_2010_PB_EIRFPLR, !- Name + -1.360532E-01, !- Coefficient1 Constant + 8.642703E-03, !- Coefficient2 x + 3.855583E-06, !- Coefficient3 x**2 + 1.024034E+00, !- Coefficient4 y + 6.047444E-02, !- Coefficient5 y**2 + -8.947860E-03, !- Coefficient6 x*y + 0.000000E+00, !- Coefficient7 x**3 + 5.706602E-02, !- Coefficient8 y**3 + 0.000000E+00, !- Coefficient9 x**2*y + 0.000000E+00, !- Coefficient10 x*y**2 + 31.13, !- Minimum Value of x + 36.52, !- Maximum Value of x + 0.19, !- Minimum Value of y + 1.03; !- Maximum Value of y + + Chiller:Electric:ReformulatedEIR, + Chiller for plant plant_loops-1903, !- Name + Autosize, !- Reference Capacity {W} + 4.885, !- Reference COP {W/W} + 6.67, !- Reference Leaving Chilled Water Temperature {C} + 34.94, !- Reference Leaving Condenser Fluid Temperature {C} + Autosize, !- Reference Chilled Water Flow Rate {m3/s} + Autosize, !- Reference Condenser Fluid Flow Rate {m3/s} + WC_PD_2010_PB_CAPFT, !- Cooling Capacity Function of Temperature Curve Name + WC_PD_2010_PB_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + LeavingCondenserWaterTemperature, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Type + WC_PD_150to300_2010_PB_EIRFPLR, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.1, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + 0.2, !- Minimum Unloading Ratio + Node 72, !- Chilled Water Inlet Node Name + Node 78, !- Chilled Water Outlet Node Name + Node 79, !- Condenser Inlet Node Name + Node 80, !- Condenser Outlet Node Name + 1, !- Fraction of Compressor Electric Consumption Rejected by Condenser + 2, !- Leaving Chilled Water Lower Temperature Limit {C} + ConstantFlow, !- Chiller Flow Mode + , !- Design Heat Recovery Water Flow Rate {m3/s} + , !- Heat Recovery Inlet Node Name + , !- Heat Recovery Outlet Node Name + 1, !- Sizing Factor + , !- Condenser Heat Recovery Relative Capacity Fraction + , !- Heat Recovery Inlet High Temperature Limit Schedule Name + , !- Heat Recovery Leaving Temperature Setpoint Node Name + General, !- End-Use Subcategory + ModulatedLoopPLR, !- Condenser Flow Control + Y=F(X), !- Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name + CondenserdT, !- Temperature Difference Across Condenser Schedule Name + 0.35; !- Condenser Minimum Flow Fraction + +!- =========== ALL OBJECTS IN CLASS: COOLINGTOWER:VARIABLESPEED =========== + + CoolingTower:VariableSpeed, + Cooling Tower Variable Speed 1, !- Name + Node 58, !- Water Inlet Node Name + Node 62, !- Water Outlet Node Name + YorkCalc, !- Model Type + , !- Model Coefficient Name + 20, !- Design Inlet Air Wet-Bulb Temperature {C} + 3.8889, !- Design Approach Temperature {deltaC} + 5.5556, !- Design Range Temperature {deltaC} + 0.0208164076775233, !- Design Water Flow Rate {m3/s} + Autosize, !- Design Air Flow Rate {m3/s} + 6154.53944372216, !- Design Fan Power {W} + Cooling Tower Fan Power Ratio Function of Air Flow Rate, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve Name + 0.25, !- Minimum Air Flow Rate Ratio + 0.125, !- Fraction of Tower Capacity in Free Convection Regime + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + SaturatedExit, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Supply Water Storage Tank Name + , !- Outdoor Air Inlet Node Name + 2, !- Number of Cells + MaximalCell, !- Cell Control + 0.5, !- Cell Minimum Water Flow Rate Fraction + 2.5, !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: PLANTLOOP =========== + + PlantLoop, + Boiler plant plant_loops-1904, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Boiler plant plant_loops-1904 Operation Schemes, !- Plant Equipment Operation Scheme Name + Node 85, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 0, !- Minimum Loop Temperature {C} + Autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + Node 84, !- Plant Side Inlet Node Name + Node 85, !- Plant Side Outlet Node Name + Boiler plant plant_loops-1904 Supply Branches, !- Plant Side Branch List Name + Boiler plant plant_loops-1904 Supply Connector List, !- Plant Side Connector List Name + Node 87, !- Demand Side Inlet Node Name + Node 88, !- Demand Side Outlet Node Name + Boiler plant plant_loops-1904 Demand Branches, !- Demand Side Branch List Name + Boiler plant plant_loops-1904 Demand Connector List, !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + , !- Availability Manager List Name + SingleSetpoint; !- Plant Loop Demand Calculation Scheme + + PlantLoop, + Chiller plant plant_loops-1903, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Chiller plant plant_loops-1903 Operation Schemes, !- Plant Equipment Operation Scheme Name + Node 71, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 0, !- Minimum Loop Temperature {C} + Autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + Node 70, !- Plant Side Inlet Node Name + Node 71, !- Plant Side Outlet Node Name + Chiller plant plant_loops-1903 Supply Branches, !- Plant Side Branch List Name + Chiller plant plant_loops-1903 Supply Connector List, !- Plant Side Connector List Name + Node 73, !- Demand Side Inlet Node Name + Node 74, !- Demand Side Outlet Node Name + Chiller plant plant_loops-1903 Demand Branches, !- Demand Side Branch List Name + Chiller plant plant_loops-1903 Demand Connector List, !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + , !- Availability Manager List Name + SingleSetpoint, !- Plant Loop Demand Calculation Scheme + CommonPipe; !- Common Pipe Simulation + + PlantLoop, + Condenser Plant plant_loops-1902, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + Condenser Plant plant_loops-1902 Operation Schemes, !- Plant Equipment Operation Scheme Name + Node 57, !- Loop Temperature Setpoint Node Name + 100, !- Maximum Loop Temperature {C} + 0, !- Minimum Loop Temperature {C} + Autosize, !- Maximum Loop Flow Rate {m3/s} + 0, !- Minimum Loop Flow Rate {m3/s} + Autocalculate, !- Plant Loop Volume {m3} + Node 56, !- Plant Side Inlet Node Name + Node 57, !- Plant Side Outlet Node Name + Condenser Plant plant_loops-1902 Supply Branches, !- Plant Side Branch List Name + Condenser Plant plant_loops-1902 Supply Connector List, !- Plant Side Connector List Name + Node 59, !- Demand Side Inlet Node Name + Node 60, !- Demand Side Outlet Node Name + Condenser Plant plant_loops-1902 Demand Branches, !- Demand Side Branch List Name + Condenser Plant plant_loops-1902 Demand Connector List, !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + , !- Availability Manager List Name + SingleSetpoint; !- Plant Loop Demand Calculation Scheme + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTLIST =========== + + PlantEquipmentList, + Boiler plant plant_loops-1904 Heating Equipment List, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + Boiler for plant plant_loops-1904; !- Equipment 1 Name + + PlantEquipmentList, + Chiller plant plant_loops-1903 Cooling Equipment List, !- Name + Chiller:Electric:ReformulatedEIR, !- Equipment 1 Object Type + Chiller for plant plant_loops-1903; !- Equipment 1 Name + + PlantEquipmentList, + Condenser Plant plant_loops-1902 Cooling Equipment List, !- Name + CoolingTower:VariableSpeed, !- Equipment 1 Object Type + Cooling Tower Variable Speed 1; !- Equipment 1 Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:COOLINGLOAD =========== + + PlantEquipmentOperation:CoolingLoad, + Chiller plant plant_loops-1903 Cooling Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000000, !- Load Range 1 Upper Limit {W} + Chiller plant plant_loops-1903 Cooling Equipment List; !- Range 1 Equipment List Name + + PlantEquipmentOperation:CoolingLoad, + Condenser Plant plant_loops-1902 Cooling Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000000, !- Load Range 1 Upper Limit {W} + Condenser Plant plant_loops-1902 Cooling Equipment List; !- Range 1 Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD =========== + + PlantEquipmentOperation:HeatingLoad, + Boiler plant plant_loops-1904 Heating Operation Scheme, !- Name + 0, !- Load Range 1 Lower Limit {W} + 1000000000, !- Load Range 1 Upper Limit {W} + Boiler plant plant_loops-1904 Heating Equipment List; !- Range 1 Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES =========== + + PlantEquipmentOperationSchemes, + Boiler plant plant_loops-1904 Operation Schemes, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + Boiler plant plant_loops-1904 Heating Operation Scheme, !- Control Scheme 1 Name + Always On Discrete; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + Chiller plant plant_loops-1903 Operation Schemes, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Chiller plant plant_loops-1903 Cooling Operation Scheme, !- Control Scheme 1 Name + Always On Discrete; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + Condenser Plant plant_loops-1902 Operation Schemes, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + Condenser Plant plant_loops-1902 Cooling Operation Scheme, !- Control Scheme 1 Name + Always On Discrete; !- Control Scheme 1 Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:SCHEDULED =========== + + AvailabilityManager:Scheduled, + OA_System-AirLoop air_handlers-2963 Availability Manager, !- Name + Always On Discrete; !- Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:NIGHTCYCLE =========== + + AvailabilityManager:NightCycle, + Availability Manager Night Cycle 1, !- Name + Always_On, !- Applicability Schedule Name + AirLoop air_handlers-2963_Sched_Ruleset, !- Fan Schedule Name + CycleOnAny, !- Control Type + 0.2, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 3600; !- Cycling Run Time {s} + +!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST =========== + + AvailabilityManagerAssignmentList, + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + Availability Manager Night Cycle 1; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + OA_System-AirLoop air_handlers-2963 Availability Manager List, !- Name + AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type + OA_System-AirLoop air_handlers-2963 Availability Manager; !- Availability Manager 1 Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED =========== + + SetpointManager:Scheduled, + Setpoint Manager Scheduled 2, !- Name + Temperature, !- Control Variable + Hot_Water_Temperature, !- Schedule Name + Node 85; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + Setpoint Manager Scheduled 1, !- Name + Temperature, !- Control Variable + Secondary CHW Temp - 44F,!- Schedule Name + Node 73; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + Cooling Tower Setpoint Manager, !- Name + Temperature, !- Control Variable + Tower-Loop-Temperature-Schedule, !- Schedule Name + Node 57; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:OUTDOORAIRRESET =========== + + SetpointManager:OutdoorAirReset, + Setpoint Manager Outdoor Air Reset 1, !- Name + Temperature, !- Control Variable + 12.22, !- Setpoint at Outdoor Low Temperature {C} + 15.67, !- Outdoor Low Temperature {C} + 6.67, !- Setpoint at Outdoor High Temperature {C} + 26.67, !- Outdoor High Temperature {C} + Node 71; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:MIXEDAIR =========== + + SetpointManager:MixedAir, + Setpoint Manager Mixed Air 1, !- Name + Temperature, !- Control Variable + Node 96, !- Reference Setpoint Node Name + Node 104, !- Fan Inlet Node Name + Node 96, !- Fan Outlet Node Name + Node 102; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + Setpoint Manager Mixed Air 2, !- Name + Temperature, !- Control Variable + Node 96, !- Reference Setpoint Node Name + Node 104, !- Fan Inlet Node Name + Node 96, !- Fan Outlet Node Name + Node 106; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + Setpoint Manager Mixed Air 3, !- Name + Temperature, !- Control Variable + Node 96, !- Reference Setpoint Node Name + Node 104, !- Fan Inlet Node Name + Node 96, !- Fan Outlet Node Name + Node 104; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:WARMEST =========== + + SetpointManager:Warmest, + Setpoint Manager Warmest 1, !- Name + Temperature, !- Control Variable + AirLoop air_handlers-2963, !- HVAC Air Loop Name + 12.8, !- Minimum Setpoint Temperature {C} + 15.6, !- Maximum Setpoint Temperature {C} + MaximumTemperature, !- Strategy + Node 96; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== + + Curve:Quadratic, + Curve Quadratic 1, !- Name + 0.06369119, !- Coefficient1 Constant + 0.58488832, !- Coefficient2 x + 0.35280274, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== + + Curve:Cubic, + Cooling Tower Fan Power Ratio Function of Air Flow Rate, !- Name + 0, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 1, !- Coefficient4 x**3 + 0.05, !- Minimum Value of x + 1.2; !- Maximum Value of x + + Curve:Cubic, + Cooling Tower Variable Speed 1 Fan Power Ratio Curve, !- Name + -0.0093, !- Coefficient1 Constant + 0.0512, !- Coefficient2 x + -0.0838, !- Coefficient3 x**2 + 1.0419, !- Coefficient4 x**3 + 0.15, !- Minimum Value of x + 1; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== + + Curve:Biquadratic, + Curve Biquadratic 1, !- Name + 1.0215158, !- Coefficient1 Constant + 0.037035864, !- Coefficient2 x + 0.0002332476, !- Coefficient3 x**2 + -0.003894048, !- Coefficient4 y + -6.52536e-005, !- Coefficient5 y**2 + -0.0002680452, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + + Curve:Biquadratic, + Curve Biquadratic 2, !- Name + 0.70176857, !- Coefficient1 Constant + -0.00452016, !- Coefficient2 x + 0.0005331096, !- Coefficient3 x**2 + -0.005498208, !- Coefficient4 y + 0.0005445792, !- Coefficient5 y**2 + -0.0007290324, !- Coefficient6 x*y + 5, !- Minimum Value of x + 10, !- Maximum Value of x + 24, !- Minimum Value of y + 35; !- Maximum Value of y + +!- =========== ALL OBJECTS IN CLASS: LIFECYCLECOST:PARAMETERS =========== + + LifeCycleCost:Parameters, + Life Cycle Cost Parameters, !- Name + EndOfYear, !- Discounting Convention + ConstantDollar, !- Inflation Approach + 0.03, !- Real Discount Rate + , !- Nominal Discount Rate + , !- Inflation + , !- Base Date Month + 2011, !- Base Date Year + , !- Service Date Month + 2011, !- Service Date Year + 25, !- Length of Study Period in Years + , !- Tax rate + None; !- Depreciation Method + +!- =========== ALL OBJECTS IN CLASS: LIFECYCLECOST:NONRECURRINGCOST =========== + + LifeCycleCost:NonrecurringCost, + Default Cost, !- Name + Construction, !- Category + 0, !- Cost + ServicePeriod; !- Start of Costs + +!- =========== ALL OBJECTS IN CLASS: LIFECYCLECOST:USEPRICEESCALATION =========== + + LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Electricity, !- LCC Price Escalation Name + Electricity, !- Resource + 2011, !- Escalation Start Year + January, !- Escalation Start Month + 0.9838, !- Year 1 Escalation + 0.9730, !- Year 2 Escalation + 0.9632, !- Year 3 Escalation + 0.9611, !- Year 4 Escalation + 0.9571, !- Year 5 Escalation + 0.9553, !- Year 6 Escalation + 0.9539, !- Year 7 Escalation + 0.9521, !- Year 8 Escalation + 0.9546, !- Year 9 Escalation + 0.9550, !- + 0.9553, !- + 0.9564, !- + 0.9575, !- + 0.9596, !- + 0.9618, !- + 0.9614, !- + 0.9618, !- + 0.9618, !- + 0.9593, !- + 0.9589, !- + 0.9607, !- + 0.9625, !- + 0.9650, !- + 0.9708, !- + 0.9751, !- + 0.9762, !- + 0.9766, !- + 0.9766, !- + 0.9769, !- + 0.9773; !- + + LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Distillate Oil, !- LCC Price Escalation Name + FuelOilNo1, !- Resource + 2011, !- Escalation Start Year + January, !- Escalation Start Month + 0.9714, !- Year 1 Escalation + 0.9730, !- Year 2 Escalation + 0.9942, !- Year 3 Escalation + 1.0164, !- Year 4 Escalation + 1.0541, !- Year 5 Escalation + 1.0928, !- Year 6 Escalation + 1.1267, !- Year 7 Escalation + 1.1580, !- Year 8 Escalation + 1.1792, !- Year 9 Escalation + 1.1967, !- + 1.2200, !- + 1.2333, !- + 1.2566, !- + 1.2709, !- + 1.2826, !- + 1.2985, !- + 1.3102, !- + 1.3250, !- + 1.3261, !- + 1.3282, !- + 1.3324, !- + 1.3356, !- + 1.3431, !- + 1.3510, !- + 1.3568, !- + 1.3606, !- + 1.3637, !- + 1.3674, !- + 1.3706, !- + 1.3743; !- + + LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Residual Oil, !- LCC Price Escalation Name + FuelOilNo2, !- Resource + 2011, !- Escalation Start Year + January, !- Escalation Start Month + 0.8469, !- Year 1 Escalation + 0.8257, !- Year 2 Escalation + 0.8681, !- Year 3 Escalation + 0.8988, !- Year 4 Escalation + 0.9289, !- Year 5 Escalation + 0.9604, !- Year 6 Escalation + 0.9897, !- Year 7 Escalation + 1.0075, !- Year 8 Escalation + 1.0314, !- Year 9 Escalation + 1.0554, !- + 1.0861, !- + 1.1278, !- + 1.1497, !- + 1.1620, !- + 1.1743, !- + 1.1852, !- + 1.1948, !- + 1.2037, !- + 1.2071, !- + 1.2119, !- + 1.2139, !- + 1.2194, !- + 1.2276, !- + 1.2365, !- + 1.2420, !- + 1.2461, !- + 1.2509, !- + 1.2550, !- + 1.2591, !- + 1.2638; !- + + LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Natural gas, !- LCC Price Escalation Name + NaturalGas, !- Resource + 2011, !- Escalation Start Year + January, !- Escalation Start Month + 0.9823, !- Year 1 Escalation + 0.9557, !- Year 2 Escalation + 0.9279, !- Year 3 Escalation + 0.9257, !- Year 4 Escalation + 0.9346, !- Year 5 Escalation + 0.9412, !- Year 6 Escalation + 0.9512, !- Year 7 Escalation + 0.9645, !- Year 8 Escalation + 0.9856, !- Year 9 Escalation + 1.0067, !- + 1.0222, !- + 1.0410, !- + 1.0610, !- + 1.0787, !- + 1.0942, !- + 1.1098, !- + 1.1220, !- + 1.1308, !- + 1.1386, !- + 1.1486, !- + 1.1619, !- + 1.1763, !- + 1.1918, !- + 1.2118, !- + 1.2284, !- + 1.2439, !- + 1.2605, !- + 1.2772, !- + 1.2938, !- + 1.3115; !- + + LifeCycleCost:UsePriceEscalation, + U.S. Avg Commercial-Coal, !- LCC Price Escalation Name + Coal, !- Resource + 2011, !- Escalation Start Year + January, !- Escalation Start Month + 0.9970, !- Year 1 Escalation + 1.0089, !- Year 2 Escalation + 1.0089, !- Year 3 Escalation + 0.9941, !- Year 4 Escalation + 0.9941, !- Year 5 Escalation + 1.0000, !- Year 6 Escalation + 1.0030, !- Year 7 Escalation + 1.0059, !- Year 8 Escalation + 1.0089, !- Year 9 Escalation + 1.0119, !- + 1.0148, !- + 1.0178, !- + 1.0208, !- + 1.0267, !- + 1.0297, !- + 1.0356, !- + 1.0415, !- + 1.0534, !- + 1.0564, !- + 1.0593, !- + 1.0653, !- + 1.0712, !- + 1.0742, !- + 1.0801, !- + 1.0831, !- + 1.0831, !- + 1.0861, !- + 1.0890, !- + 1.0920, !- + 1.0950; !- + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLEDICTIONARY =========== + + Output:VariableDictionary,IDF,Unsorted; + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS =========== + + Output:Table:SummaryReports, + AnnualBuildingUtilityPerformanceSummary, !- Report 1 Name + InputVerificationandResultsSummary, !- Report 2 Name + EquipmentSummary, !- Report 3 Name + EnvelopeSummary, !- Report 4 Name + HVACSizingSummary, !- Report 5 Name + ZoneComponentLoadSummary,!- Report 6 Name + FanReportMonthly, !- Report 7 Name + LightingSummary, !- Report 8 Name + ZoneElectricSummaryMonthly; !- Report 9 Name + +!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE =========== + + OutputControl:Table:Style, + CommaAndHTML; !- Column Separator + +!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:REPORTINGTOLERANCES =========== + + OutputControl:ReportingTolerances, + 0.5, !- Tolerance for Time Heating Setpoint Not Met {deltaC} + 0.5; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== + +! Output:Variable,*,Chiller Electricity Energy,Hourly; +! +! Output:Variable,*,Heating Coil Heating Energy,Hourly; +! +! Output:Variable,*,Boiler NaturalGas Energy,Hourly; +! +! Output:Variable,*,Boiler Electricity Energy,Hourly; +! +! Output:Variable,*,Boiler Propane Rate,hourly; +! +! Output:Variable,*,Boiler Propane Energy,hourly; +! +! Output:Variable,*,Boiler FuelOilNo2 Rate,hourly; +! +! Output:Variable,*,Boiler FuelOilNo2 Energy,hourly; +! +! Output:Variable,*,System Node Standard Density Volume Flow Rate,Hourly; +! +! Output:Variable,*,Fan Electricity Energy,Hourly; +! +! Output:Variable,*,Pump Electricity Energy,Hourly; +! +! Output:Variable,*,Cooling Tower Fan Electricity Energy,Hourly; +! +!! Calculate zone AFR +! +! Output:Variable,*,Cooling Coil Electricity Energy,Hourly; +! +! Output:Variable,*,Heating Coil NaturalGas Energy,Hourly; +! +! Output:Variable,*,Fan Electricity Energy,Hourly; +! +! Output:Variable,*,Heating Coil Electricity Energy,Hourly; +! +! Output:Variable,*,Heating Coil Crankcase Heater Electricity Energy,Hourly; +! +! Output:Variable,*,Heating Coil Defrost Electricity Energy,Hourly; +! +! Output:Variable,*,Baseboard Electricity Energy,Hourly; +! +! Output:Variable,*,Baseboard Total Heating Energy,Hourly; +! +! Output:Variable,*,Baseboard Hot Water Energy,Hourly; +! +! Output:Variable,*,Zone VRF Air Terminal Cooling Electricity Energy,Hourly; +! +! Output:Variable,*,Zone VRF Air Terminal Heating Electricity Energy,Hourly; +! +! Output:Variable,*,VRF Heat Pump Cooling Electricity Energy,Hourly; +! +! Output:Variable,*,VRF Heat Pump Heating Electricity Energy,Hourly; +! +! Output:Variable,*,VRF Heat Pump Crankcase Heater Electricity Energy,hourly; +! +! Output:Variable,*,VRF Heat Pump Defrost Electricity Energy,hourly; + +Output:Variable,*,Pump Mass Flow Rate,detailed; !- HVAC Average [kg/s] +Output:Variable,Node 57,System Node Temperature,detailed; +Output:Variable,Node 57,System Node Setpoint Temperature,detailed; +Output:Variable,*,Cooling Tower Inlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Cooling Tower Outlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Cooling Tower Mass Flow Rate,detailed; !- HVAC Average [kg/s] +Output:Variable,*,Cooling Tower Heat Transfer Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Cooling Tower Fan Electricity Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Cooling Tower Fan Electricity Energy,detailed; !- HVAC Sum [J] +Output:Variable,*,Cooling Tower Air Flow Rate Ratio,detailed; !- HVAC Average [] +Output:Variable,*,Cooling Tower Fan Part Load Ratio,detailed; !- HVAC Average [] +Output:Variable,*,Cooling Tower Operating Cells Count,detailed; !- HVAC Average [] +Output:Variable,*,Cooling Tower Make Up Water Volume Flow Rate,detailed; !- HVAC Average [m3/s] +Output:Variable,*,Cooling Tower Make Up Water Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Make Up Mains Water Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Water Evaporation Volume Flow Rate,detailed; !- HVAC Average [m3/s] +Output:Variable,*,Cooling Tower Water Evaporation Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Water Drift Volume Flow Rate,detailed; !- HVAC Average [m3/s] +Output:Variable,*,Cooling Tower Water Drift Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Water Blowdown Volume Flow Rate,detailed; !- HVAC Average [m3/s] +Output:Variable,*,Cooling Tower Water Blowdown Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Water Blowdown Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Cooling Tower Water Blowdown Volume,detailed; !- HVAC Sum [m3] +Output:Variable,*,Chiller Part Load Ratio,detailed; !- HVAC Average [] +Output:Variable,*,Chiller Cycling Ratio,detailed; !- HVAC Average [] +Output:Variable,*,Chiller Electricity Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Chiller Electricity Energy,detailed; !- HVAC Sum [J] +Output:Variable,*,Chiller Evaporator Cooling Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Chiller Evaporator Cooling Energy,detailed; !- HVAC Sum [J] +Output:Variable,*,Chiller False Load Heat Transfer Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Chiller False Load Heat Transfer Energy,detailed; !- HVAC Sum [J] +Output:Variable,*,Chiller Evaporator Inlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Chiller Evaporator Outlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Chiller Evaporator Mass Flow Rate,detailed; !- HVAC Average [kg/s] +Output:Variable,*,Chiller Condenser Heat Transfer Rate,detailed; !- HVAC Average [W] +Output:Variable,*,Chiller Condenser Heat Transfer Energy,detailed; !- HVAC Sum [J] +Output:Variable,*,Chiller COP,detailed; !- HVAC Average [W/W] +Output:Variable,*,Chiller Capacity Temperature Modifier Multiplier,detailed; !- HVAC Average [] +Output:Variable,*,Chiller EIR Temperature Modifier Multiplier,detailed; !- HVAC Average [] +Output:Variable,*,Chiller EIR Part Load Modifier Multiplier,detailed; !- HVAC Average [] +Output:Variable,*,Chiller Condenser Inlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Chiller Condenser Outlet Temperature,detailed; !- HVAC Average [C] +Output:Variable,*,Chiller Condenser Mass Flow Rate,detailed; !- HVAC Average [kg/s] +Output:Variable,*,Plant Supply Side Cooling Demand Rate,detailed; !- HVAC Average [W] + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:SQLITE =========== + + Output:SQLite, + SimpleAndTabular; !- Option Type + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:DIAGNOSTICS =========== + + Output:Diagnostics, + DisplayExtraWarnings; !- Key 1 + From c34186ea2770351a99095f74a05edda7958cf208 Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Thu, 13 Jun 2024 11:08:07 -0700 Subject: [PATCH 12/15] Use condenser temperature instead of chilled water temperature. --- src/EnergyPlus/ChillerElectricEIR.cc | 2 +- src/EnergyPlus/ChillerReformulatedEIR.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index 7b9e2341a6d..db1ecde8a15 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -1524,7 +1524,7 @@ void ElectricEIRChillerSpecs::size(EnergyPlusData &state) Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->TempRefCondIn, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index f7603cf5ff0..f54ff03a3f6 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -1319,7 +1319,7 @@ void ReformulatedEIRChillerSpecs::size(EnergyPlusData &state) if (state.dataSize->PlantSizData(PltSizNum).DesVolFlowRate >= HVAC::SmallWaterVolFlow && tmpNomCap > 0.0) { Real64 rho = FluidProperties::GetDensityGlycol(state, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidName, - Constant::CWInitConvTemp, + this->TempRefCondIn, state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).FluidIndex, RoutineName); Real64 Cp = FluidProperties::GetSpecificHeatGlycol(state, From 8d461f9b7dc8bf95f9e2e46e1041f6ef5d9a419d Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Wed, 3 Jul 2024 12:58:10 -0700 Subject: [PATCH 13/15] Address review comments. --- .../chillers.tex | 4 ++-- .../src/overview/group-plant-equipment.tex | 4 ++-- src/EnergyPlus/ChillerElectricEIR.cc | 15 ++++----------- src/EnergyPlus/ChillerElectricEIR.hh | 2 +- src/EnergyPlus/ChillerReformulatedEIR.cc | 15 ++++----------- src/EnergyPlus/ChillerReformulatedEIR.hh | 2 +- 6 files changed, 14 insertions(+), 28 deletions(-) diff --git a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex index b4187f862ee..9f900004a95 100644 --- a/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex +++ b/doc/engineering-reference/src/simulation-models-encyclopedic-reference/chillers.tex @@ -2007,7 +2007,7 @@ \subsubsection{Chiller Basin Heater}\label{chiller-basin-heater-3} \emph{ChillerIsOFF} is the logical variable denoting that the chiller is not operating for the current simulation time step (e.g.,~ there is no cooling load to be met by the chiller, or if there is no water flow through the chiller due to a chiller or pump availability schedule, etc.). -\subsection{Variable Flow Condenser}\label{hot-water-heat-recovery-from-chillers} +\subsection{Variable Flow Condenser}\label{variable-flow-condenser} The \hyperref[electric-chiller-model-based-on-condenser-entering-temperature](Chiller:Electric:EIR) and \hyperref[electric-chiller-model-based-on-condenser-leaving-temperature](Chiller:Electric:ReformulatedEIR) have the capability to simulate variable condenser flow requests. The flow request can be capped to a minimum via a user-defined fraction. The minimum condenser plant loop flow rate will be limited by the minimum flow rates of the operating pumps. The flow request can be calculated using one of the following approaches: @@ -2040,7 +2040,7 @@ \subsubsection{Chiller water part load ratio} \({CAP_{CHWL}}\) is the design chilled water loop capacity determined using inputs from the Sizing:Plant object for the loop -The condenser plant loop water flow fraction (\({CWFR}\)) corresponding to the \({PLR_{CWHL}}\) is obtained by feeding it through a user-specified curve. A linear curve is expected: \(CWFR = C * {PLR_{CHWL}} + D\) where C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. +The condenser plant loop water flow fraction (\({CWFR}\)) corresponding to the \({PLR_{CWHL}}\) is obtained by feeding it through a user-specified curve. A linear curve is expected: \(CWFR = C * {PLR_{CHWL}} + D\) where C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design \& Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. The actual condenser mass flow request for the chiller is then calculated as follows: diff --git a/doc/input-output-reference/src/overview/group-plant-equipment.tex b/doc/input-output-reference/src/overview/group-plant-equipment.tex index 81f2a97c382..b316dfea15f 100644 --- a/doc/input-output-reference/src/overview/group-plant-equipment.tex +++ b/doc/input-output-reference/src/overview/group-plant-equipment.tex @@ -2150,9 +2150,9 @@ \subsubsection{Inputs}\label{inputs-5-021} \paragraph{Field: Condenser Flow Control}\label{field-condenser-flow-control} -This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. +This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name-2]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. -\paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name} +\paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name-2} This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. diff --git a/src/EnergyPlus/ChillerElectricEIR.cc b/src/EnergyPlus/ChillerElectricEIR.cc index db1ecde8a15..ad6003b6f90 100644 --- a/src/EnergyPlus/ChillerElectricEIR.cc +++ b/src/EnergyPlus/ChillerElectricEIR.cc @@ -673,8 +673,6 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 17) { thisChiller.ChillerCondLoopFlowFLoopPLRIndex = Curve::GetCurveIndex(state, state.dataIPShortCut->cAlphaArgs(18)); - } else { - thisChiller.ChillerCondLoopFlowFLoopPLRIndex = 0; } if ((thisChiller.ChillerCondLoopFlowFLoopPLRIndex == 0) && (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedLoopPLR)) { @@ -687,11 +685,7 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 18) { if (!state.dataIPShortCut->lAlphaFieldBlanks(19)) { thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(19)); - } else { - thisChiller.CondDTScheduleNum = 0; } - } else { - thisChiller.CondDTScheduleNum = 0; } if (thisChiller.CondDTScheduleNum == 0 && thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedDeltaTemperature) { ShowSevereError(state, @@ -702,8 +696,6 @@ void GetElectricEIRChillerInput(EnergyPlusData &state) if (NumNums > 18) { thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(19); - } else { - thisChiller.MinCondFlowRatio = 0.2; } // Check the CAP-FT, EIR-FT, and PLR curves and warn user if different from 1.0 by more than +-10% @@ -2406,9 +2398,10 @@ void ElectricEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoad, b this->CondMassFlowRate = this->CondMassFlowRateMax; } break; } - this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), - this->MinCondFlowRatio * this->CondMassFlowRateMax, - this->VSBranchPumpMinLimitMassFlowCond); + Real64 minCondMassFlowRate = this->MinCondFlowRatio * this->CondMassFlowRateMax; + Real64 minPumpMassFlowRate = this->VSBranchPumpMinLimitMassFlowCond; + Real64 maxCondMassFlowRate = min(this->CondMassFlowRate, this->CondMassFlowRateMax); + this->CondMassFlowRate = max(maxCondMassFlowRate, minCondMassFlowRate, minPumpMassFlowRate); PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); PlantUtilities::PullCompInterconnectTrigger( state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); diff --git a/src/EnergyPlus/ChillerElectricEIR.hh b/src/EnergyPlus/ChillerElectricEIR.hh index 2eda35d50e9..aaee0a7fc23 100644 --- a/src/EnergyPlus/ChillerElectricEIR.hh +++ b/src/EnergyPlus/ChillerElectricEIR.hh @@ -191,7 +191,7 @@ namespace ChillerElectricEIR { int ChillerCondLoopFlowFLoopPLRIndex = 0; // Condenser loop flow rate fraction function of loop PLR int CondDT = 0; // Temperature difference across condenser int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index - Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction + Real64 MinCondFlowRatio = 0.2; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; Real64 VSBranchPumpMinLimitMassFlowCond = 0.0; bool VSBranchPumpFoundCond = false; diff --git a/src/EnergyPlus/ChillerReformulatedEIR.cc b/src/EnergyPlus/ChillerReformulatedEIR.cc index f54ff03a3f6..8affa19efb2 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.cc +++ b/src/EnergyPlus/ChillerReformulatedEIR.cc @@ -647,8 +647,6 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 16) { thisChiller.ChillerCondLoopFlowFLoopPLRIndex = Curve::GetCurveIndex(state, state.dataIPShortCut->cAlphaArgs(17)); - } else { - thisChiller.ChillerCondLoopFlowFLoopPLRIndex = 0; } if ((thisChiller.ChillerCondLoopFlowFLoopPLRIndex == 0) && (thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedLoopPLR)) { @@ -661,11 +659,7 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) if (NumAlphas > 17) { if (!state.dataIPShortCut->lAlphaFieldBlanks(18)) { thisChiller.CondDTScheduleNum = ScheduleManager::GetScheduleIndex(state, state.dataIPShortCut->cAlphaArgs(18)); - } else { - thisChiller.CondDTScheduleNum = 0; } - } else { - thisChiller.CondDTScheduleNum = 0; } if (thisChiller.CondDTScheduleNum == 0 && thisChiller.CondenserFlowControl == DataPlant::CondenserFlowControl::ModulatedDeltaTemperature) { ShowSevereError(state, @@ -676,8 +670,6 @@ void GetElecReformEIRChillerInput(EnergyPlusData &state) if (NumNums > 15) { thisChiller.MinCondFlowRatio = state.dataIPShortCut->rNumericArgs(16); - } else { - thisChiller.MinCondFlowRatio = 0.2; } } @@ -2547,9 +2539,10 @@ void ReformulatedEIRChillerSpecs::calculate(EnergyPlusData &state, Real64 &MyLoa this->CondMassFlowRate = this->CondMassFlowRateMax; } break; } - this->CondMassFlowRate = max(min(this->CondMassFlowRate, this->CondMassFlowRateMax), - this->MinCondFlowRatio * this->CondMassFlowRateMax, - this->VSBranchPumpMinLimitMassFlowCond); + Real64 minCondMassFlowRate = this->MinCondFlowRatio * this->CondMassFlowRateMax; + Real64 minPumpMassFlowRate = this->VSBranchPumpMinLimitMassFlowCond; + Real64 maxCondMassFlowRate = min(this->CondMassFlowRate, this->CondMassFlowRateMax); + this->CondMassFlowRate = max(maxCondMassFlowRate, minCondMassFlowRate, minPumpMassFlowRate); PlantUtilities::SetComponentFlowRate(state, this->CondMassFlowRate, this->CondInletNodeNum, this->CondOutletNodeNum, this->CDPlantLoc); PlantUtilities::PullCompInterconnectTrigger( state, this->CWPlantLoc, this->CondMassFlowIndex, this->CDPlantLoc, DataPlant::CriteriaType::MassFlowRate, this->CondMassFlowRate); diff --git a/src/EnergyPlus/ChillerReformulatedEIR.hh b/src/EnergyPlus/ChillerReformulatedEIR.hh index bffa67913cd..8ee3f264ae2 100644 --- a/src/EnergyPlus/ChillerReformulatedEIR.hh +++ b/src/EnergyPlus/ChillerReformulatedEIR.hh @@ -215,7 +215,7 @@ namespace ChillerReformulatedEIR { int ChillerCondLoopFlowFLoopPLRIndex = 0; // Condenser loop flow rate fraction function of loop PLR int CondDT = 0; // Temperature difference across condenser int CondDTScheduleNum = 0; // Temperature difference across condenser schedule index - Real64 MinCondFlowRatio = 0.0; // Minimum condenser flow fraction + Real64 MinCondFlowRatio = 0.2; // Minimum condenser flow fraction DataBranchAirLoopPlant::ControlType EquipFlowCtrl = DataBranchAirLoopPlant::ControlType::Invalid; Real64 VSBranchPumpMinLimitMassFlowCond = 0.0; bool VSBranchPumpFoundCond = false; From bb430cf4bdf96d95ae570dbac05e6fe3e912a3ec Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Fri, 5 Jul 2024 09:20:59 -0500 Subject: [PATCH 14/15] Fix remaining documentation errors --- .../src/overview/group-plant-equipment.tex | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/input-output-reference/src/overview/group-plant-equipment.tex b/doc/input-output-reference/src/overview/group-plant-equipment.tex index d25d95f949f..6b5faf42321 100644 --- a/doc/input-output-reference/src/overview/group-plant-equipment.tex +++ b/doc/input-output-reference/src/overview/group-plant-equipment.tex @@ -1743,13 +1743,13 @@ \subsubsection{Inputs}\label{inputs-4-023} This optional field allows you to specify a user-defined end-use subcategory, e.g., ``Process''. A new meter for reporting is created for each unique subcategory (ref: \hyperref[outputmeter-and-outputmetermeterfileonly]{Output:Meter} objects). Any text may be used here to further subcategorize the end-uses in the ABUPS End Uses by Subcategory table and in the LEED Summary EAp2-4/5 Performance Rating Method Compliance table. If this field is omitted or blank, the chiller will be assigned to the ``General'' end-use subcategory. -\paragraph{Field: Condenser Flow Control}\label{field-condenser-flow-control} +\paragraph{Field: Condenser Flow Control} This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. \paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name} -This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. +This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design \& Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. \paragraph{Field: Temperature Difference Across Condenser Schedule Name}\label{field-temperature-difference-across-condenser-schedule-name} @@ -2150,13 +2150,13 @@ \subsubsection{Inputs}\label{inputs-5-021} \paragraph{Field: Condenser Flow Control}\label{field-condenser-flow-control} -This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name-2]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. +This field is optional.~ It describes the chiller condenser flow request mode to be used in a simulation. With ``ConstantFlow'' a chiller will always request its maximum condenser flow rate. With ``ModulatedChillerPLR'' the condenser flow request corresponds to the chiller part load ratio multiplied by the chiller maximum condenser flow rate. With ``ModulatedLoopPLR'' the chiller will request a flow rate that is function of the chilled water loop's part load ratio, see the \hyperref[field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name-2]{Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name} input. With ``ModulatedDeltaTemperature'' the chiller will request the flow rate required to meet a condenser loop delta temperature, see the \hyperref[field-temperature-difference-across-condenser-schedule-name-2]{Temperature Difference Across Condenser Schedule Name} input. Use ``ConstantFlow'' when modeling a constant flow condenser plant loop, choose one of the other inputs when modeling a variable flow condenser plant loop. The default is ``ConstantFlow''. \paragraph{Field: Condenser Loop Flow Rate Fraction Function of Loop Part Load Ratio Curve Name}\label{field-condenser-loop-flow-rate-function-of-loop-part-load-ratio-curve-name-2} -This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design & Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. +This field describes the condenser loop flow rate fraction as a function of the chiller water loop part load ratio. A linear curve is expected: CWFR = C * PLR + D where CWFR is the condenser water flow fraction (actual/design), PLR is the chilled water plant loop part load ratio (actual/design), and C and D are coefficients. A reference for these coefficients is provided in ``Optimizing Design \& Control Of Chilled Water Plants, Part 5'', S. Taylor, ASHRAE Journal June 2012. This input is only used when the ``ModulatedLoopPLR'' condenser flow control option is used. -\paragraph{Field: Temperature Difference Across Condenser Schedule Name}\label{field-temperature-difference-across-condenser-schedule-name} +\paragraph{Field: Temperature Difference Across Condenser Schedule Name}\label{field-temperature-difference-across-condenser-schedule-name-2} This field should be a schedule that defines the temperature difference across the condenser of the chiller. This input is used to calculate the condenser flow rate request. This input is only used when ``Condenser Flow Control'' is set to ``ModulatedDeltaTemperature''. From 125f666a505f46fb85679b75c35abb3291f1c16b Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Fri, 5 Jul 2024 09:33:02 -0500 Subject: [PATCH 15/15] Take over this PR to add a few random cmake advanced tags --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c72ae4ef52..52eacc3ff70 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -437,6 +437,7 @@ mark_as_advanced(KIVA_EXE_BUILD) mark_as_advanced(KIVA_GROUND_PLOT) mark_as_advanced(KIVA_STATIC_LIB) mark_as_advanced(KIVA_TESTING) +mark_as_advanced(KIVA_WERROR) mark_as_advanced(BTWXT_COVERAGE) mark_as_advanced(BUILD_BTWXT_TESTING) mark_as_advanced(BTWXT_STATIC_LIB) @@ -488,3 +489,15 @@ mark_as_advanced(ENABLE_SANITIZER_LEAK) mark_as_advanced(ENABLE_SANITIZER_MEMORY) mark_as_advanced(ENABLE_SANITIZER_THREAD) mark_as_advanced(ENABLE_SANITIZER_UNDEFINED_BEHAVIOR) +mark_as_advanced(X11_xcb_xkb_INCLUDE_PATH) +mark_as_advanced(ENABLE_SANITIZER_UNDEFINED_BEHAVIOR) +mark_as_advanced(JSONCPP_USE_SECURE_MEMORY) +mark_as_advanced(JSONCPP_WITH_CMAKE_PACKAGE) +mark_as_advanced(JSONCPP_WITH_PKGCONFIG_SUPPORT) +mark_as_advanced(JSONCPP_WITH_POST_BUILD_UNITTE) +mark_as_advanced(JSONCPP_WITH_STRICT_ISO) +mark_as_advanced(JSONCPP_WITH_TESTS) +mark_as_advanced(JSONCPP_WITH_WARNING_AS_ERROR) +mark_as_advanced(CMAKE_CXX_COMPILER_LAUNCHER) +mark_as_advanced(CMAKE_C_COMPILER_LAUNCHER) +mark_as_advanced(DEBUG_LIBNAME_SUFFIX)