From 557b4b616c01fc4365039d0582077577a52a4036 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 30 Apr 2021 10:42:52 -0600 Subject: [PATCH 01/22] Add initial NFP. --- .../NFP-Automatic-Window-Multipliers.md | 130 ++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 design/FY2021/NFP-Automatic-Window-Multipliers.md diff --git a/design/FY2021/NFP-Automatic-Window-Multipliers.md b/design/FY2021/NFP-Automatic-Window-Multipliers.md new file mode 100644 index 00000000000..cda822634c2 --- /dev/null +++ b/design/FY2021/NFP-Automatic-Window-Multipliers.md @@ -0,0 +1,130 @@ +# Automatic Window Multipliers + +**Neal Kruis, Big Ladder** + +## Overview + +One time saving technique used in EnergyPlus models is the use of Window Multipliers to reduce redundant heat balance calculations on multiple window surfaces. However, this practice requires users to modify their building geometry to be substantially different from the actual architectural features they are trying to represent. This work will explore, propose, and implement an approach where these simplifications can be inferred automatically from user input and performed behind-the-scenes so that models with many windows can benefit from time-saving techniques without sacrificing geometric fidelity. + +This work will focus largely on the one-dimensional heat balance calculations in `CalcWindowHeatBalanceInternalRoutines` that require solutions to non-linear systems of equations with potential off-diagonal matrix components. This work will not impact solar shading or daylighting calculations. + +## Implementation + +EnergyPlus will evaluate user input to group window surfaces with similar inputs. Each group will be assigned a representative window where the heat balance calculations will be performed and subsequently referenced by other window surfaces in the same group. + +### Grouping + +Fenestration surfaces will be grouped where they have identical: + +- Construction +- Shading / storm window schedules +- Orientation +- Boundary conditions (e.g., same interior zone) + - View factor to ground + - Centroid height (with some tolerance to allow for the minor impacts on surface wind speed and surface temperature) +- Window height (with some tolerance to allow for minor impacts on interior convection coefficients) +- Frame and divider properties + - Conductance + - Projections + - Edge-of-glass ratio + - Solar absorptance + - IR emissivity + - Reveal surfaces + +### Calculations + +One-dimensional heat balance calculations will be performed for a representative window surface for each grouping of window surfaces. EnergyPlus will internally set data members of window surfaces in the same group to reference the values calculated by the representative window. When looping through windows for calculations, EnergyPlus will skip over the non-representative windows. + +The one-dimensional calculation results will then be scaled by the respective areas of each surface to calculate zonal heat balances and output reporting variables. + +Windows surfaces within a group will also be aggregated into a single surface area for participating in interior longwave radiation exchange. + +***Note:*** Solar shading, interior solar distribution and daylighting will still be calculated on a window-by-window basis using the existing routines. +Absorbed solar radiation used in the one-dimensional window heat balance will be calculated based on an area weighted average of all solar fractions within the group. Optical properties for the current solar incidence angle will also be calculated once within a group, but the total transmitted solar for a given window will be calculated based in the solar incidence calculated by the shading routines. + +### Limitations + +In theory, this concept could apply to any group of surfaces with similar properties (including opaque surfaces), this work will be limited to a subset of fenestration surfaces. This implementation will not initially apply to: + +- Equivalent Layer windows +- Complex Fenestration +- Thermochromics +- Tubular Daylight Devices +- Windows with airflow control + +Some of these options will be further evaluated throughout the course of implementation. + +## Testing + +We will start this work by developing a scalable test suite that compares: + +1. Aggregating windows into a single surface +2. Use of manual window multipliers +3. Explicit definition of separate windows without new feature +4. (after implementation) Explicit definition of separate windows with new feature + +We will test a single zone with fixed total window areas on four facades, but separate cases with increasing numbers of windows. + +The initial tests will give some idea of what level of performance gains to expect, and what the potential impact on results will be. (We expect the results will be similar to aggregating windows into a single surface.) + +## IDD Changes and Transition + +Add new "A4" field to `PerformancePrecisionTradeoffs`: + +``` +PerformancePrecisionTradeoffs, + \unique-object + \memo This object enables users to choose certain options that speed up EnergyPlus simulation, + \memo but may lead to small decreases in accuracy of results. + A1, \field Use Coil Direct Solutions + \note If Yes, an analytical or empirical solution will be used to replace iterations in + \note the coil performance calculations. + \type choice + \key Yes + \key No + \default No + A2, \field Zone Radiant Exchange Algorithm + \note Determines which algorithm will be used to solve long wave radiant exchange among surfaces within a zone. + \type choice + \key ScriptF + \key CarrollMRT + \default ScriptF + A3, \field Override Mode + \note The increasing mode number roughly correspond with increased speed. A description of each mode + \note are shown in the documentation. When Advanced is selected the N1 field value is used. + \type choice + \key Normal + \key Mode01 + \key Mode02 + \key Mode03 + \key Mode04 + \key Mode05 + \key Mode06 + \key Mode07 + \key Advanced + \default Normal + N1, \field MaxZoneTempDiff + \note Maximum zone temperature change before HVAC timestep is shortened. + \note Only used when Override Mode is set to Advanced + \type real + \minimum 0.1 + \maximum 3.0 + \default 0.3 + N2, \field MaxAllowedDelTemp + \note Maximum surface temperature change before HVAC timestep is shortened. + \note Only used when Override Mode is set to Advanced + \type real + \minimum 0.002 + \maximum 0.1 + \default 0.002 + A4; \field Use Automatic Window Multipliers + \note Automatically group window surfaces with similar characteristics and perform relevant calculations only once for each group. + \type choice + \key Yes + \key No + \default No +``` + +## Documentation + +Much of the content above will be modified to describe the feature in "Input Output Reference", and details of the aggregation calculations in "Engineering Reference". \ No newline at end of file From 21c959d61e8861e2a12c9e6b4507136c7a25516b Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Tue, 27 Jul 2021 13:39:35 -0600 Subject: [PATCH 02/22] Detect representative surfaces and apply to interior radiation exchange. --- src/EnergyPlus/DataSurfaces.cc | 43 ++++++ src/EnergyPlus/DataSurfaces.hh | 157 +++++++++++++++++++- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 62 +++++--- src/EnergyPlus/HeatBalanceManager.cc | 2 + src/EnergyPlus/SurfaceGeometry.cc | 18 ++- 5 files changed, 259 insertions(+), 23 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index dc68520d3a9..80f3d8ace52 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -623,6 +623,49 @@ Real64 SurfaceData::get_average_height(EnergyPlusData &state) const return std::abs(averageHeight) / SinTilt; } +void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) +{ + calcHashKey = SurfaceCalcHashKey(); + calcHashKey.Construction = Construction; + calcHashKey.Azimuth = round(Azimuth * 10.0) / 10.0; + calcHashKey.Tilt = round(Tilt * 10.0) / 10.0; + calcHashKey.Height = round(Height * 10.0) / 10.0; + calcHashKey.Zone = Zone; + calcHashKey.TAirRef = TAirRef; + + auto& extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; + if (extBoundCond > 0) { + calcHashKey.ExtZone = state.dataSurface->Surface(extBoundCond).Zone; + } else { + calcHashKey.ExtZone = 0; + } + + calcHashKey.ExtSolar = ExtSolar; + calcHashKey.ExtWind = ExtWind; + calcHashKey.ViewFactorGround = round(ViewFactorGround * 10.0) / 10.0; + calcHashKey.ViewFactorSky = round(ViewFactorSky * 10.0) / 10.0; + + calcHashKey.HeatTransferAlgorithm = HeatTransferAlgorithm; + calcHashKey.IntConvCoeff = IntConvCoeff; + calcHashKey.ExtConvCoeff = ExtConvCoeff; + calcHashKey.OSCPtr = OSCPtr; + calcHashKey.OSCMPtr = OSCMPtr; + + calcHashKey.FrameDivider = FrameDivider; + calcHashKey.SurfWinStormWinConstr = state.dataSurface->SurfWinStormWinConstr(SurfNum); + + calcHashKey.MaterialMovInsulExt = MaterialMovInsulExt; + calcHashKey.MaterialMovInsulInt = MaterialMovInsulInt; + calcHashKey.SchedMovInsulExt = SchedMovInsulExt; + calcHashKey.SchedMovInsulInt = SchedMovInsulInt; + calcHashKey.ExternalShadingSchInd = ExternalShadingSchInd; + calcHashKey.SurroundingSurfacesNum = SurroundingSurfacesNum; + calcHashKey.LinkedOutAirNode = LinkedOutAirNode; + calcHashKey.OutsideHeatSourceTermSchedule = OutsideHeatSourceTermSchedule; + calcHashKey.InsideHeatSourceTermSchedule = InsideHeatSourceTermSchedule; + +} + // Functions void SetSurfaceOutBulbTempAt(EnergyPlusData &state) diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 84d13497796..69ebe418604 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -51,6 +51,7 @@ // C++ Headers #include #include +#include // ObjexxFCL Headers #include @@ -545,7 +546,148 @@ namespace DataSurfaces { }; // Surface2D - struct SurfaceData +struct SurfaceCalcHashKey +{ + // Values that must be the same in order for surfaces to use a representative calculation + + int Construction; // Pointer to the construction in the Construct derived type + Real64 Azimuth; // Direction the surface outward normal faces (degrees) or FACING + Real64 Tilt; // Angle (deg) between the ground outward normal and the surface outward normal + Real64 Height; // Height of the surface (m) + int Zone; // Interior environment or zone the surface is a part of + int TAirRef; // Flag for reference air temperature + int ExtZone; // For an "interzone" surface, this is the adjacent ZONE number (not adjacent SURFACE number). + bool ExtSolar; // True if the "outside" of the surface is exposed to solar + bool ExtWind; // True if the "outside" of the surface is exposed to wind + Real64 ViewFactorGround; // View factor to the ground from the exterior of the surface for diffuse solar radiation + Real64 ViewFactorSky; // View factor to the sky from the exterior of the surface for diffuse solar radiation + + // Special Properties + iHeatTransferModel HeatTransferAlgorithm; // used for surface-specific heat transfer algorithm. + int IntConvCoeff; // Interior Convection Coefficient Algorithm pointer (different data structure) + int ExtConvCoeff; // Exterior Convection Coefficient Algorithm pointer (different data structure) + int OSCPtr; // Pointer to OSC data structure + int OSCMPtr; // "Pointer" to OSCM data structure (other side conditions from a model) + + // Windows + int FrameDivider; // Pointer to frame and divider information (windows only) + int SurfWinStormWinConstr; // Construction with storm window (windows only) + // Airflow control // Not supported + // Shading Control // Not supported + + // Other special boundary conditions + // SolarIncidentInside // Not supported + int MaterialMovInsulExt; // Pointer to the material used for exterior movable insulation + int MaterialMovInsulInt; // Pointer to the material used for interior movable insulation + int SchedMovInsulExt; // Schedule for exterior movable insulation + int SchedMovInsulInt; // Schedule for interior movable insulation + int ExternalShadingSchInd; // Schedule for a the external shading + int SurroundingSurfacesNum; // Index of a surrounding surfaces list (defined in SurfaceProperties::SurroundingSurfaces) + int LinkedOutAirNode; // Index of the an OutdoorAir:Node + int OutsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the outside surface + int InsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the inside surface + + // based on boost::hash_combine + std::size_t hash_combine(std::size_t current_hash, std::size_t new_hash) const + { + current_hash ^= new_hash + 0x9e3779b9 + (current_hash << 6) + (current_hash >> 2); + return current_hash; + } + + std::vector get_hash_list() const + { + using std::hash; + + return { + hash()(Construction), + hash()(Azimuth), + hash()(Tilt), + hash()(Height), + hash()(Zone), + hash()(TAirRef), + hash()(ExtZone), + hash()(ExtSolar), + hash()(ExtWind), + hash()(ViewFactorGround), + hash()(ViewFactorSky), + + hash()(HeatTransferAlgorithm), + hash()(IntConvCoeff), + hash()(ExtConvCoeff), + hash()(OSCPtr), + hash()(OSCMPtr), + + hash()(FrameDivider), + hash()(SurfWinStormWinConstr), + + hash()(MaterialMovInsulExt), + hash()(MaterialMovInsulInt), + hash()(SchedMovInsulExt), + hash()(SchedMovInsulInt), + hash()(ExternalShadingSchInd), + hash()(SurroundingSurfacesNum), + hash()(LinkedOutAirNode), + hash()(OutsideHeatSourceTermSchedule), + hash()(InsideHeatSourceTermSchedule) + }; + } + + std::size_t get_hash() const + { + auto hash_list = get_hash_list(); + std::size_t combined_hash = 0u; + for (auto hash : hash_list) + { + combined_hash = hash_combine(combined_hash,hash); + } + return combined_hash; + } + + bool operator==(const SurfaceCalcHashKey &other) const + { + return (Construction == other.Construction && + Azimuth == other.Azimuth && + Tilt == other.Tilt && + Height == other.Height && + Zone == other.Zone && + ExtZone == other.ExtZone && + ExtSolar == other.ExtSolar && + ExtWind == other.ExtWind && + ViewFactorGround == other.ViewFactorGround && + ViewFactorSky == other.ViewFactorSky && + + HeatTransferAlgorithm == other.HeatTransferAlgorithm && + IntConvCoeff == other.IntConvCoeff && + ExtConvCoeff == other.ExtConvCoeff && + OSCPtr == other.OSCPtr && + OSCMPtr == other.OSCMPtr && + + FrameDivider == other.FrameDivider && + SurfWinStormWinConstr == other.SurfWinStormWinConstr && + + MaterialMovInsulExt == other.MaterialMovInsulExt && + MaterialMovInsulInt == other.MaterialMovInsulInt && + SchedMovInsulExt == other.SchedMovInsulExt && + SchedMovInsulInt == other.SchedMovInsulInt && + ExternalShadingSchInd == other.ExternalShadingSchInd && + SurroundingSurfacesNum == other.SurroundingSurfacesNum && + LinkedOutAirNode == other.LinkedOutAirNode && + OutsideHeatSourceTermSchedule == other.OutsideHeatSourceTermSchedule && + InsideHeatSourceTermSchedule == other.InsideHeatSourceTermSchedule + ); + } +}; + +struct SurfaceCalcHasher +{ + std::size_t operator()(const SurfaceCalcHashKey& key) const + { + return key.get_hash(); + } +}; + + +struct SurfaceData { // Types @@ -555,6 +697,10 @@ namespace DataSurfaces { // Members std::string Name; // User supplied name of the surface (must be unique) int Construction; // Pointer to the construction in the Construct derived type + + int RepresentativeCalcSurfNum; // Index of the surface that is used to calculate the heat + // balance for this surface + bool EMSConstructionOverrideON; // if true, EMS is calling to override the construction value int EMSConstructionOverrideValue; // pointer value to use for Construction when overridden int ConstructionStoredInputValue; // holds the original value for Construction per surface input @@ -754,12 +900,14 @@ namespace DataSurfaces { int SolarEnclSurfIndex; // Pointer to solar enclosure surface data, ZoneSolarInfo(n).SurfacePtr(RadEnclSurfIndex) points to this surface bool IsAirBoundarySurf; // True if surface is an air boundary surface (Construction:AirBoundary), + SurfaceCalcHashKey calcHashKey; // Hash key used for determining if this surface requires unique calculations. + std::vector DisabledShadowingZoneList; // Array of all disabled shadowing zone number to the current surface // the surface diffusion model // Default Constructor SurfaceData() - : Construction(0), EMSConstructionOverrideON(false), EMSConstructionOverrideValue(0), ConstructionStoredInputValue(0), + : Construction(0), RepresentativeCalcSurfNum(-1), EMSConstructionOverrideON(false), EMSConstructionOverrideValue(0), ConstructionStoredInputValue(0), Class(SurfaceClass::None), Shape(SurfaceShape::None), Sides(0), Area(0.0), GrossArea(0.0), NetAreaShadowCalc(0.0), Perimeter(0.0), Azimuth(0.0), Height(0.0), Reveal(0.0), Tilt(0.0), Width(0.0), HeatTransSurf(false), OutsideHeatSourceTermSchedule(0), InsideHeatSourceTermSchedule(0), HeatTransferAlgorithm(iHeatTransferModel::NotSet), BaseSurf(0), NumSubSurfaces(0), Zone(0), @@ -822,6 +970,8 @@ namespace DataSurfaces { Real64 get_average_height(EnergyPlusData &state) const; + void make_hash_key(EnergyPlusData &state, const int& SurfNum); + private: // Methods // Computed Shape Category ShapeCat computed_shapeCat() const; @@ -1340,6 +1490,9 @@ struct SurfacesData : BaseGlobalStruct Array1D SurfSkyDiffReflFacGnd; // sky diffuse reflection view factors from ground Array2D SurfWinA; // Time step value of factor for beam absorbed in window glass layers + std::unordered_map RepresentativeSurfaceMap; // A map that categorizes similar surfaces with + // a single representative surface index + // Time step value of factor for diffuse absorbed in window layers Array2D SurfWinADiffFront; diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index f0540c74d68..df72bf31ca5 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -424,8 +424,17 @@ namespace HeatBalanceIntRadExchange { } } } + + // Automatic Surface Multipliers: Update values of surfaces not simulated + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; SurfNum++) { + auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; + state.dataSurface->SurfWinIRfromParentZone(SurfNum) = state.dataSurface->SurfWinIRfromParentZone(RepSurfNum); + NetLWRadToSurf(SurfNum) = NetLWRadToSurf(RepSurfNum); + } } + + #ifdef EP_Detailed_Timings epStopTime("CalcInteriorRadExchange="); #endif @@ -523,7 +532,10 @@ namespace HeatBalanceIntRadExchange { for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; surfNum <= surfNum_end; ++surfNum) { - ++numEnclosureSurfaces; + // Automatic Surface Multipliers: Only include representative surfaces + if (surfNum == state.dataSurface->Surface(surfNum).RepresentativeCalcSurfNum) { + ++numEnclosureSurfaces; + } } } thisEnclosure.NumOfSurfaces = numEnclosureSurfaces; @@ -542,20 +554,42 @@ namespace HeatBalanceIntRadExchange { thisEnclosure.FMRT.dimension(numEnclosureSurfaces, 0.0); thisEnclosure.SurfacePtr.dimension(numEnclosureSurfaces, 0); - // Initialize the surface pointer array + // Initialize the enclosure surface arrays int enclosureSurfNum = 0; + // std::unordered_map enclosureSurfMap; // TODO: Automatic Surface Multipliers something for view factor reporting for (int const zoneNum : thisEnclosure.ZoneNums) { int priorZoneTotEnclSurfs = enclosureSurfNum; for (int surfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; surfNum <= surfNum_end; ++surfNum) { - ++enclosureSurfNum; - thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; + // Automatic Surface Multipliers: Only include representative surfaces + if (surfNum == state.dataSurface->Surface(surfNum).RepresentativeCalcSurfNum) { + ++enclosureSurfNum; + thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; + //enclosureSurfMap[surfNum] = enclosureSurfNum; + thisEnclosure.Area(enclosureSurfNum) = state.dataSurface->Surface(surfNum).Area; + thisEnclosure.Emissivity(enclosureSurfNum) = + state.dataConstruction->Construct(state.dataSurface->Surface(surfNum).Construction).InsideAbsorpThermal; + thisEnclosure.Azimuth(enclosureSurfNum) = state.dataSurface->Surface(surfNum).Azimuth; + thisEnclosure.Tilt(enclosureSurfNum) = state.dataSurface->Surface(surfNum).Tilt; + } } - // Store SurfaceReportNums to maintain original reporting order + for (int allSurfNum = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst, surfNum_end = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; allSurfNum <= surfNum_end; ++allSurfNum) { + // Map non-representative surfaces + if (allSurfNum != state.dataSurface->Surface(allSurfNum).RepresentativeCalcSurfNum) { + // Automatic Surface Multipliers: search for corresponding enclosure surface number + for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { + if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->Surface(allSurfNum).RepresentativeCalcSurfNum) { + //enclosureSurfMap[allSurfNum] = enclSNum; + // Increase the area for the combined enclosure surface + thisEnclosure.Area(enclSNum) += state.dataSurface->Surface(allSurfNum).Area; + } + } + } + // Store SurfaceReportNums to maintain original reporting order for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->AllSurfaceListReportOrder[allSurfNum - 1]) { thisEnclosure.SurfaceReportNums.push_back(enclSNum); @@ -564,15 +598,6 @@ namespace HeatBalanceIntRadExchange { } } } - // Initialize the area and emissivity arrays - for (int enclSurfNum = 1; enclSurfNum <= thisEnclosure.NumOfSurfaces; ++enclSurfNum) { - int const SurfNum = thisEnclosure.SurfacePtr(enclSurfNum); - thisEnclosure.Area(enclSurfNum) = state.dataSurface->Surface(SurfNum).Area; - thisEnclosure.Emissivity(enclSurfNum) = - state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).InsideAbsorpThermal; - thisEnclosure.Azimuth(enclSurfNum) = state.dataSurface->Surface(SurfNum).Azimuth; - thisEnclosure.Tilt(enclSurfNum) = state.dataSurface->Surface(SurfNum).Tilt; - } if (thisEnclosure.NumOfSurfaces == 1) { // If there is only one surface in a zone, then there is no radiant exchange @@ -585,6 +610,7 @@ namespace HeatBalanceIntRadExchange { continue; // Go to the next enclosure in the loop } + // Process View Factors if (state.dataHeatBalIntRadExchg->CarrollMethod) { // User View Factors cannot be used with Carroll method. @@ -684,9 +710,7 @@ namespace HeatBalanceIntRadExchange { } print(state.files.eio, "\n"); } - } - if (ViewFactorReport) { print(state.files.eio, "Final ViewFactors,To Surface,Surface Class,RowSum"); for (int SurfNum : thisEnclosure.SurfaceReportNums) { print(state.files.eio, ",{}", state.dataSurface->Surface(thisEnclosure.SurfacePtr(SurfNum)).Name); @@ -748,9 +772,7 @@ namespace HeatBalanceIntRadExchange { } print(state.files.debug, "{}\n", "!============= end of data ======================"); } - } - if (ViewFactorReport) { print(state.files.eio, "Script F Factors,X Surface"); for (int SurfNum : thisEnclosure.SurfaceReportNums) { print(state.files.eio, ",{}", state.dataSurface->Surface(thisEnclosure.SurfacePtr(SurfNum)).Name); @@ -763,9 +785,8 @@ namespace HeatBalanceIntRadExchange { } print(state.files.eio, "\n"); } - } - if (ViewFactorReport) { // Deallocate saved approximate/user view factors + // Deallocate saved approximate/user view factors SaveApproximateViewFactors.deallocate(); } @@ -1333,6 +1354,7 @@ namespace HeatBalanceIntRadExchange { F = 0.0; numinx1 = 0; + // TODO: Automatic Window Multipliers, throw error if view factors aren't the same for representative surfaces for (index = 2; index <= NumAlphas; index += 2) { inx1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), enclosureSurfaceNames, N); inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 86cfc5deee7..2bc2a5c2b4f 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -7947,6 +7947,8 @@ namespace HeatBalanceManager { ErrorsFound = true; } else { state.dataSurface->SurfIncSolSSG(Loop).SurfPtr = SurfNum; + // Automatic Surface Multipliers: Do not use representative surfaces + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; } // Assign construction number diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 50d7e132830..bf8164cab2f 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2589,9 +2589,25 @@ namespace SurfaceGeometry { ShowWarningError(state, RoutineName + "When using DElight daylighting the presence of exterior shading surfaces is ignored."); } - // Initialize run time surface arrays for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; SurfNum++) { + // Initialize run time surface arrays state.dataSurface->SurfActiveConstruction(SurfNum) = state.dataSurface->Surface(SurfNum).Construction; + // Automatic Surface Multipliers: Assign representative heat transfer surfaces + bool useAutomaticSurfaceMultipliers = true; // TODO: Replace with user input + if (useAutomaticSurfaceMultipliers) { + // Conditions where surface always needs to be unique + bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum); + if (forceUniqueSurface) { + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; + } else { + // Make hash key for this surface (used to determine uniqueness) + state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); + // Insert surface key into map. If key already exists, it will not be added. + state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey,SurfNum}); + // Assign the representative surface number based on the first instance of the identical key + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; + } + } } } From 0e22f2d4ff87a928b7f2e577ebc61ba23ca9a7b2 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Wed, 28 Jul 2021 11:51:36 -0600 Subject: [PATCH 03/22] Add report to EIO. --- src/EnergyPlus/HeatBalanceManager.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 2bc2a5c2b4f..18b2825827a 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -325,6 +325,14 @@ namespace HeatBalanceManager { // Added SV 6/26/2013 to load scheduled surface gains GetScheduledSurfaceGains(state, ErrorsFound); + print(state.files.eio, "{}\n", "! ,Surface Name,Representative Surface Name"); + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { + auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; + if (SurfNum != RepSurfNum) { + print(state.files.eio, " Representative Surface Assignment,{},{}\n", state.dataSurface->Surface(SurfNum).Name, state.dataSurface->Surface(RepSurfNum).Name); + } + } + // Added TH 1/9/2009 to create thermochromic window constructions CreateTCConstructions(state, ErrorsFound); From 17d9e108ac5a5f2661cb263ce8363a59cbad76f7 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Wed, 28 Jul 2021 13:52:22 -0600 Subject: [PATCH 04/22] Add IDD object and connect user input. --- idd/Energy+.idd.in | 8 +++++++- src/EnergyPlus/DataSurfaces.hh | 4 ++++ src/EnergyPlus/HeatBalanceManager.cc | 12 +++++++----- src/EnergyPlus/SimulationManager.cc | 3 +++ src/EnergyPlus/SurfaceGeometry.cc | 8 +++----- 5 files changed, 24 insertions(+), 11 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index 8ea0c871c0e..1fdbcea071a 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -460,7 +460,13 @@ PerformancePrecisionTradeoffs, \key ScriptF \key CarrollMRT \default ScriptF - A3, \field Override Mode + A3, \field Use Representative Surfaces for Calculations + \note Automatically group surfaces with similar characteristics and perform relevant calculations only once for each group. + \type choice + \key Yes + \key No + \default No + A4, \field Override Mode \note The increasing mode number roughly correspond with increased speed. A description of each mode \note are shown in the documentation. When Advanced is selected the N1 field value is used. \type choice diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 69ebe418604..db6e5139d58 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -1472,6 +1472,9 @@ struct SurfacesData : BaseGlobalStruct Real64 GroundLevelZ = 0.0; // Z value of ground level for solar refl calc (m) bool AirflowWindows = false; // TRUE if one or more airflow windows bool ShadingTransmittanceVaries = false; // overall, shading transmittance varies for the building + + bool UseRepresentativeSurfaceCalculations = false; // Use Representative Surfaces for Calculations + Array1D_int InsideGlassCondensationFlag; // 1 if innermost glass inside surface temp < zone air dew point; 0 otherwise Array1D_int InsideFrameCondensationFlag; // 1 if frame inside surface temp < zone air dew point; 0 otherwise Array1D_int InsideDividerCondensationFlag; // 1 if divider inside surface temp < zone air dew point; 0 otherwise @@ -1791,6 +1794,7 @@ struct SurfacesData : BaseGlobalStruct this->GroundLevelZ = 0.0; this->AirflowWindows = false; this->ShadingTransmittanceVaries = false; + this->UseRepresentativeSurfaceCalculations = false; this->InsideGlassCondensationFlag.deallocate(); this->InsideFrameCondensationFlag.deallocate(); this->InsideDividerCondensationFlag.deallocate(); diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 18b2825827a..48763a6b2c6 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -325,11 +325,13 @@ namespace HeatBalanceManager { // Added SV 6/26/2013 to load scheduled surface gains GetScheduledSurfaceGains(state, ErrorsFound); - print(state.files.eio, "{}\n", "! ,Surface Name,Representative Surface Name"); - for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { - auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; - if (SurfNum != RepSurfNum) { - print(state.files.eio, " Representative Surface Assignment,{},{}\n", state.dataSurface->Surface(SurfNum).Name, state.dataSurface->Surface(RepSurfNum).Name); + if (state.dataSurface->UseRepresentativeSurfaceCalculations) { + print(state.files.eio, "{}\n", "! ,Surface Name,Representative Surface Name"); + for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { + auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; + if (SurfNum != RepSurfNum) { + print(state.files.eio, " Representative Surface Assignment,{},{}\n", state.dataSurface->Surface(SurfNum).Name, state.dataSurface->Surface(RepSurfNum).Name); + } } } diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index 7ea27ee5968..ba4de0437bf 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -1187,6 +1187,9 @@ namespace SimulationManager { state.dataHeatBalIntRadExchg->CarrollMethod = UtilityRoutines::MakeUPPERCase(fields.at("zone_radiant_exchange_algorithm")) == "CARROLLMRT"; } + if (fields.find("use_representative_surfaces_for_calculations") != fields.end()) { + state.dataSurface->UseRepresentativeSurfaceCalculations = UtilityRoutines::MakeUPPERCase(fields.at("use_representative_surfaces_for_calculations")) == "YES"; + } bool overrideTimestep(false); bool overrideZoneAirHeatBalAlg(false); bool overrideMinNumWarmupDays(false); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index bf8164cab2f..5948259a345 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2592,14 +2592,12 @@ namespace SurfaceGeometry { for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; SurfNum++) { // Initialize run time surface arrays state.dataSurface->SurfActiveConstruction(SurfNum) = state.dataSurface->Surface(SurfNum).Construction; + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; // Automatic Surface Multipliers: Assign representative heat transfer surfaces - bool useAutomaticSurfaceMultipliers = true; // TODO: Replace with user input - if (useAutomaticSurfaceMultipliers) { + if (state.dataSurface->UseRepresentativeSurfaceCalculations) { // Conditions where surface always needs to be unique bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum); - if (forceUniqueSurface) { - state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; - } else { + if (!forceUniqueSurface) { // Make hash key for this surface (used to determine uniqueness) state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); // Insert surface key into map. If key already exists, it will not be added. From a75f851f7c6752f36e9aa055c80e8b9208f49716 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Thu, 29 Jul 2021 09:50:27 -0600 Subject: [PATCH 05/22] Update post-merge. --- src/EnergyPlus/DataSurfaces.cc | 20 ++++++++++---------- src/EnergyPlus/SimulationManager.cc | 2 +- src/EnergyPlus/SurfaceGeometry.cc | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index 516ee804dd9..7402464dca9 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -605,7 +605,7 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) calcHashKey.Tilt = round(Tilt * 10.0) / 10.0; calcHashKey.Height = round(Height * 10.0) / 10.0; calcHashKey.Zone = Zone; - calcHashKey.TAirRef = TAirRef; + calcHashKey.TAirRef = state.dataSurface->SurfTAirRef(SurfNum); auto& extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; if (extBoundCond > 0) { @@ -620,21 +620,21 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) calcHashKey.ViewFactorSky = round(ViewFactorSky * 10.0) / 10.0; calcHashKey.HeatTransferAlgorithm = HeatTransferAlgorithm; - calcHashKey.IntConvCoeff = IntConvCoeff; - calcHashKey.ExtConvCoeff = ExtConvCoeff; + calcHashKey.IntConvCoeff = state.dataSurface->SurfIntConvCoeffIndex(SurfNum); + calcHashKey.ExtConvCoeff = state.dataSurface->SurfExtConvCoeffIndex(SurfNum); calcHashKey.OSCPtr = OSCPtr; calcHashKey.OSCMPtr = OSCMPtr; calcHashKey.FrameDivider = FrameDivider; calcHashKey.SurfWinStormWinConstr = state.dataSurface->SurfWinStormWinConstr(SurfNum); - calcHashKey.MaterialMovInsulExt = MaterialMovInsulExt; - calcHashKey.MaterialMovInsulInt = MaterialMovInsulInt; - calcHashKey.SchedMovInsulExt = SchedMovInsulExt; - calcHashKey.SchedMovInsulInt = SchedMovInsulInt; - calcHashKey.ExternalShadingSchInd = ExternalShadingSchInd; - calcHashKey.SurroundingSurfacesNum = SurroundingSurfacesNum; - calcHashKey.LinkedOutAirNode = LinkedOutAirNode; + calcHashKey.MaterialMovInsulExt = state.dataSurface->SurfMaterialMovInsulExt(SurfNum); + calcHashKey.MaterialMovInsulInt = state.dataSurface->SurfMaterialMovInsulInt(SurfNum); + calcHashKey.SchedMovInsulExt = state.dataSurface->SurfSchedMovInsulExt(SurfNum); + calcHashKey.SchedMovInsulInt = state.dataSurface->SurfSchedMovInsulInt(SurfNum); + calcHashKey.ExternalShadingSchInd = state.dataSurface->SurfExternalShadingSchInd(SurfNum); + calcHashKey.SurroundingSurfacesNum = state.dataSurface->SurfSurroundingSurfacesNum(SurfNum); + calcHashKey.LinkedOutAirNode = state.dataSurface->SurfLinkedOutAirNode(SurfNum); calcHashKey.OutsideHeatSourceTermSchedule = OutsideHeatSourceTermSchedule; calcHashKey.InsideHeatSourceTermSchedule = InsideHeatSourceTermSchedule; diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index 3b350bba360..005cfc27265 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -1189,7 +1189,7 @@ namespace SimulationManager { UtilityRoutines::MakeUPPERCase(AsString(fields.at("zone_radiant_exchange_algorithm"))) == "CARROLLMRT"; } if (fields.find("use_representative_surfaces_for_calculations") != fields.end()) { - state.dataSurface->UseRepresentativeSurfaceCalculations = UtilityRoutines::MakeUPPERCase(fields.at("use_representative_surfaces_for_calculations")) == "YES"; + state.dataSurface->UseRepresentativeSurfaceCalculations = UtilityRoutines::MakeUPPERCase(AsString(fields.at("use_representative_surfaces_for_calculations"))) == "YES"; } bool overrideTimestep(false); bool overrideZoneAirHeatBalAlg(false); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 98541330d40..43650e43a47 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2752,7 +2752,7 @@ namespace SurfaceGeometry { // Automatic Surface Multipliers: Assign representative heat transfer surfaces if (state.dataSurface->UseRepresentativeSurfaceCalculations) { // Conditions where surface always needs to be unique - bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum); + bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; if (!forceUniqueSurface) { // Make hash key for this surface (used to determine uniqueness) state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); From 12e633f7b64002fe6cbf2b0c582c87bac2cf1814 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Thu, 29 Jul 2021 10:26:00 -0600 Subject: [PATCH 06/22] Apply clang format. --- src/EnergyPlus/DataSurfaces.cc | 5 +- src/EnergyPlus/DataSurfaces.hh | 277 +++++++++----------- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 10 +- src/EnergyPlus/HeatBalanceManager.cc | 7 +- src/EnergyPlus/SimulationManager.cc | 3 +- src/EnergyPlus/SurfaceGeometry.cc | 8 +- 6 files changed, 147 insertions(+), 163 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index 7402464dca9..148d4aae13b 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -597,7 +597,7 @@ Real64 SurfaceData::get_average_height(EnergyPlusData &state) const return std::abs(averageHeight) / SinTilt; } -void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) +void SurfaceData::make_hash_key(EnergyPlusData &state, const int &SurfNum) { calcHashKey = SurfaceCalcHashKey(); calcHashKey.Construction = Construction; @@ -607,7 +607,7 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) calcHashKey.Zone = Zone; calcHashKey.TAirRef = state.dataSurface->SurfTAirRef(SurfNum); - auto& extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; + auto &extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; if (extBoundCond > 0) { calcHashKey.ExtZone = state.dataSurface->Surface(extBoundCond).Zone; } else { @@ -637,7 +637,6 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int& SurfNum) calcHashKey.LinkedOutAirNode = state.dataSurface->SurfLinkedOutAirNode(SurfNum); calcHashKey.OutsideHeatSourceTermSchedule = OutsideHeatSourceTermSchedule; calcHashKey.InsideHeatSourceTermSchedule = InsideHeatSourceTermSchedule; - } // Functions diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index dfb02f504cb..c53981a4ed8 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -50,8 +50,8 @@ // C++ Headers #include -#include #include +#include // ObjexxFCL Headers #include @@ -557,148 +557,128 @@ namespace DataSurfaces { }; // Surface2D -struct SurfaceCalcHashKey -{ - // Values that must be the same in order for surfaces to use a representative calculation - - int Construction; // Pointer to the construction in the Construct derived type - Real64 Azimuth; // Direction the surface outward normal faces (degrees) or FACING - Real64 Tilt; // Angle (deg) between the ground outward normal and the surface outward normal - Real64 Height; // Height of the surface (m) - int Zone; // Interior environment or zone the surface is a part of - int TAirRef; // Flag for reference air temperature - int ExtZone; // For an "interzone" surface, this is the adjacent ZONE number (not adjacent SURFACE number). - bool ExtSolar; // True if the "outside" of the surface is exposed to solar - bool ExtWind; // True if the "outside" of the surface is exposed to wind - Real64 ViewFactorGround; // View factor to the ground from the exterior of the surface for diffuse solar radiation - Real64 ViewFactorSky; // View factor to the sky from the exterior of the surface for diffuse solar radiation - - // Special Properties - iHeatTransferModel HeatTransferAlgorithm; // used for surface-specific heat transfer algorithm. - int IntConvCoeff; // Interior Convection Coefficient Algorithm pointer (different data structure) - int ExtConvCoeff; // Exterior Convection Coefficient Algorithm pointer (different data structure) - int OSCPtr; // Pointer to OSC data structure - int OSCMPtr; // "Pointer" to OSCM data structure (other side conditions from a model) - - // Windows - int FrameDivider; // Pointer to frame and divider information (windows only) - int SurfWinStormWinConstr; // Construction with storm window (windows only) - // Airflow control // Not supported - // Shading Control // Not supported - - // Other special boundary conditions - // SolarIncidentInside // Not supported - int MaterialMovInsulExt; // Pointer to the material used for exterior movable insulation - int MaterialMovInsulInt; // Pointer to the material used for interior movable insulation - int SchedMovInsulExt; // Schedule for exterior movable insulation - int SchedMovInsulInt; // Schedule for interior movable insulation - int ExternalShadingSchInd; // Schedule for a the external shading - int SurroundingSurfacesNum; // Index of a surrounding surfaces list (defined in SurfaceProperties::SurroundingSurfaces) - int LinkedOutAirNode; // Index of the an OutdoorAir:Node - int OutsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the outside surface - int InsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the inside surface - - // based on boost::hash_combine - std::size_t hash_combine(std::size_t current_hash, std::size_t new_hash) const + struct SurfaceCalcHashKey { - current_hash ^= new_hash + 0x9e3779b9 + (current_hash << 6) + (current_hash >> 2); - return current_hash; - } + // Values that must be the same in order for surfaces to use a representative calculation + + int Construction; // Pointer to the construction in the Construct derived type + Real64 Azimuth; // Direction the surface outward normal faces (degrees) or FACING + Real64 Tilt; // Angle (deg) between the ground outward normal and the surface outward normal + Real64 Height; // Height of the surface (m) + int Zone; // Interior environment or zone the surface is a part of + int TAirRef; // Flag for reference air temperature + int ExtZone; // For an "interzone" surface, this is the adjacent ZONE number (not adjacent SURFACE number). + bool ExtSolar; // True if the "outside" of the surface is exposed to solar + bool ExtWind; // True if the "outside" of the surface is exposed to wind + Real64 ViewFactorGround; // View factor to the ground from the exterior of the surface for diffuse solar radiation + Real64 ViewFactorSky; // View factor to the sky from the exterior of the surface for diffuse solar radiation + + // Special Properties + iHeatTransferModel HeatTransferAlgorithm; // used for surface-specific heat transfer algorithm. + int IntConvCoeff; // Interior Convection Coefficient Algorithm pointer (different data structure) + int ExtConvCoeff; // Exterior Convection Coefficient Algorithm pointer (different data structure) + int OSCPtr; // Pointer to OSC data structure + int OSCMPtr; // "Pointer" to OSCM data structure (other side conditions from a model) + + // Windows + int FrameDivider; // Pointer to frame and divider information (windows only) + int SurfWinStormWinConstr; // Construction with storm window (windows only) + // Airflow control // Not supported + // Shading Control // Not supported + + // Other special boundary conditions + // SolarIncidentInside // Not supported + int MaterialMovInsulExt; // Pointer to the material used for exterior movable insulation + int MaterialMovInsulInt; // Pointer to the material used for interior movable insulation + int SchedMovInsulExt; // Schedule for exterior movable insulation + int SchedMovInsulInt; // Schedule for interior movable insulation + int ExternalShadingSchInd; // Schedule for a the external shading + int SurroundingSurfacesNum; // Index of a surrounding surfaces list (defined in SurfaceProperties::SurroundingSurfaces) + int LinkedOutAirNode; // Index of the an OutdoorAir:Node + int OutsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the outside surface + int InsideHeatSourceTermSchedule; // Pointer to the schedule of additional source of heat flux rate applied to the inside surface + + // based on boost::hash_combine + std::size_t hash_combine(std::size_t current_hash, std::size_t new_hash) const + { + current_hash ^= new_hash + 0x9e3779b9 + (current_hash << 6) + (current_hash >> 2); + return current_hash; + } - std::vector get_hash_list() const - { - using std::hash; - - return { - hash()(Construction), - hash()(Azimuth), - hash()(Tilt), - hash()(Height), - hash()(Zone), - hash()(TAirRef), - hash()(ExtZone), - hash()(ExtSolar), - hash()(ExtWind), - hash()(ViewFactorGround), - hash()(ViewFactorSky), - - hash()(HeatTransferAlgorithm), - hash()(IntConvCoeff), - hash()(ExtConvCoeff), - hash()(OSCPtr), - hash()(OSCMPtr), - - hash()(FrameDivider), - hash()(SurfWinStormWinConstr), - - hash()(MaterialMovInsulExt), - hash()(MaterialMovInsulInt), - hash()(SchedMovInsulExt), - hash()(SchedMovInsulInt), - hash()(ExternalShadingSchInd), - hash()(SurroundingSurfacesNum), - hash()(LinkedOutAirNode), - hash()(OutsideHeatSourceTermSchedule), - hash()(InsideHeatSourceTermSchedule) - }; - } + std::vector get_hash_list() const + { + using std::hash; + + return {hash()(Construction), + hash()(Azimuth), + hash()(Tilt), + hash()(Height), + hash()(Zone), + hash()(TAirRef), + hash()(ExtZone), + hash()(ExtSolar), + hash()(ExtWind), + hash()(ViewFactorGround), + hash()(ViewFactorSky), + + hash()(HeatTransferAlgorithm), + hash()(IntConvCoeff), + hash()(ExtConvCoeff), + hash()(OSCPtr), + hash()(OSCMPtr), + + hash()(FrameDivider), + hash()(SurfWinStormWinConstr), + + hash()(MaterialMovInsulExt), + hash()(MaterialMovInsulInt), + hash()(SchedMovInsulExt), + hash()(SchedMovInsulInt), + hash()(ExternalShadingSchInd), + hash()(SurroundingSurfacesNum), + hash()(LinkedOutAirNode), + hash()(OutsideHeatSourceTermSchedule), + hash()(InsideHeatSourceTermSchedule)}; + } - std::size_t get_hash() const - { - auto hash_list = get_hash_list(); - std::size_t combined_hash = 0u; - for (auto hash : hash_list) + std::size_t get_hash() const { - combined_hash = hash_combine(combined_hash,hash); + auto hash_list = get_hash_list(); + std::size_t combined_hash = 0u; + for (auto hash : hash_list) { + combined_hash = hash_combine(combined_hash, hash); + } + return combined_hash; } - return combined_hash; - } - bool operator==(const SurfaceCalcHashKey &other) const - { - return (Construction == other.Construction && - Azimuth == other.Azimuth && - Tilt == other.Tilt && - Height == other.Height && - Zone == other.Zone && - ExtZone == other.ExtZone && - ExtSolar == other.ExtSolar && - ExtWind == other.ExtWind && - ViewFactorGround == other.ViewFactorGround && - ViewFactorSky == other.ViewFactorSky && - - HeatTransferAlgorithm == other.HeatTransferAlgorithm && - IntConvCoeff == other.IntConvCoeff && - ExtConvCoeff == other.ExtConvCoeff && - OSCPtr == other.OSCPtr && - OSCMPtr == other.OSCMPtr && - - FrameDivider == other.FrameDivider && - SurfWinStormWinConstr == other.SurfWinStormWinConstr && - - MaterialMovInsulExt == other.MaterialMovInsulExt && - MaterialMovInsulInt == other.MaterialMovInsulInt && - SchedMovInsulExt == other.SchedMovInsulExt && - SchedMovInsulInt == other.SchedMovInsulInt && - ExternalShadingSchInd == other.ExternalShadingSchInd && - SurroundingSurfacesNum == other.SurroundingSurfacesNum && - LinkedOutAirNode == other.LinkedOutAirNode && - OutsideHeatSourceTermSchedule == other.OutsideHeatSourceTermSchedule && - InsideHeatSourceTermSchedule == other.InsideHeatSourceTermSchedule - ); - } -}; + bool operator==(const SurfaceCalcHashKey &other) const + { + return (Construction == other.Construction && Azimuth == other.Azimuth && Tilt == other.Tilt && Height == other.Height && + Zone == other.Zone && ExtZone == other.ExtZone && ExtSolar == other.ExtSolar && ExtWind == other.ExtWind && + ViewFactorGround == other.ViewFactorGround && ViewFactorSky == other.ViewFactorSky && -struct SurfaceCalcHasher -{ - std::size_t operator()(const SurfaceCalcHashKey& key) const - { - return key.get_hash(); - } -}; + HeatTransferAlgorithm == other.HeatTransferAlgorithm && IntConvCoeff == other.IntConvCoeff && + ExtConvCoeff == other.ExtConvCoeff && OSCPtr == other.OSCPtr && OSCMPtr == other.OSCMPtr && + + FrameDivider == other.FrameDivider && SurfWinStormWinConstr == other.SurfWinStormWinConstr && + MaterialMovInsulExt == other.MaterialMovInsulExt && MaterialMovInsulInt == other.MaterialMovInsulInt && + SchedMovInsulExt == other.SchedMovInsulExt && SchedMovInsulInt == other.SchedMovInsulInt && + ExternalShadingSchInd == other.ExternalShadingSchInd && SurroundingSurfacesNum == other.SurroundingSurfacesNum && + LinkedOutAirNode == other.LinkedOutAirNode && OutsideHeatSourceTermSchedule == other.OutsideHeatSourceTermSchedule && + InsideHeatSourceTermSchedule == other.InsideHeatSourceTermSchedule); + } + }; + + struct SurfaceCalcHasher + { + std::size_t operator()(const SurfaceCalcHashKey &key) const + { + return key.get_hash(); + } + }; -struct SurfaceData + struct SurfaceData { // Types @@ -706,10 +686,10 @@ struct SurfaceData using Plane = Vector4; // Members - std::string Name; // User supplied name of the surface (must be unique) - int Construction; // Pointer to the construction in the Construct derived type + std::string Name; // User supplied name of the surface (must be unique) + int Construction; // Pointer to the construction in the Construct derived type - int RepresentativeCalcSurfNum; // Index of the surface that is used to calculate the heat + int RepresentativeCalcSurfNum; // Index of the surface that is used to calculate the heat // balance for this surface int ConstructionStoredInputValue; // holds the original value for Construction per surface input @@ -822,9 +802,9 @@ struct SurfaceData // Default Constructor SurfaceData() - : Construction(0), RepresentativeCalcSurfNum(-1), ConstructionStoredInputValue(0), Class(SurfaceClass::None), Shape(SurfaceShape::None), Sides(0), Area(0.0), - GrossArea(0.0), NetAreaShadowCalc(0.0), Perimeter(0.0), Azimuth(0.0), Height(0.0), Reveal(0.0), Tilt(0.0), Width(0.0), - shapeCat(ShapeCat::Unknown), plane(0.0, 0.0, 0.0, 0.0), Centroid(0.0, 0.0, 0.0), lcsx(0.0, 0.0, 0.0), lcsy(0.0, 0.0, 0.0), + : Construction(0), RepresentativeCalcSurfNum(-1), ConstructionStoredInputValue(0), Class(SurfaceClass::None), Shape(SurfaceShape::None), + Sides(0), Area(0.0), GrossArea(0.0), NetAreaShadowCalc(0.0), Perimeter(0.0), Azimuth(0.0), Height(0.0), Reveal(0.0), Tilt(0.0), + Width(0.0), shapeCat(ShapeCat::Unknown), plane(0.0, 0.0, 0.0, 0.0), Centroid(0.0, 0.0, 0.0), lcsx(0.0, 0.0, 0.0), lcsy(0.0, 0.0, 0.0), lcsz(0.0, 0.0, 0.0), NewellAreaVector(0.0, 0.0, 0.0), NewellSurfaceNormalVector(0.0, 0.0, 0.0), OutNormVec(3, 0.0), SinAzim(0.0), CosAzim(0.0), SinTilt(0.0), CosTilt(0.0), IsConvex(true), IsDegenerate(false), VerticesProcessed(false), XShift(0.0), YShift(0.0), @@ -861,7 +841,7 @@ struct SurfaceData Real64 get_average_height(EnergyPlusData &state) const; - void make_hash_key(EnergyPlusData &state, const int& SurfNum); + void make_hash_key(EnergyPlusData &state, const int &SurfNum); private: // Methods // Computed Shape Category @@ -1362,20 +1342,21 @@ struct SurfacesData : BaseGlobalStruct int MaxReflRays = 0; // Max number of rays from a receiving surface for solar reflection calc Real64 GroundLevelZ = 0.0; // Z value of ground level for solar refl calc (m) bool AirflowWindows = false; // TRUE if one or more airflow windows - bool ShadingTransmittanceVaries = false; // overall, shading transmittance varies for the building + bool ShadingTransmittanceVaries = false; // overall, shading transmittance varies for the building bool UseRepresentativeSurfaceCalculations = false; // Use Representative Surfaces for Calculations - bool AnyHeatBalanceInsideSourceTerm = false; // True if any SurfaceProperty:HeatBalanceSourceTerm inside face used - bool AnyHeatBalanceOutsideSourceTerm = false; // True if any SurfaceProperty:HeatBalanceSourceTerm outside face used - bool AnyMovableInsulation = false; // True if any movable insulation presents - bool AnyMovableSlat = false; // True if there are any movable slats for window blinds presented + bool AnyHeatBalanceInsideSourceTerm = false; // True if any SurfaceProperty:HeatBalanceSourceTerm inside face used + bool AnyHeatBalanceOutsideSourceTerm = false; // True if any SurfaceProperty:HeatBalanceSourceTerm outside face used + bool AnyMovableInsulation = false; // True if any movable insulation presents + bool AnyMovableSlat = false; // True if there are any movable slats for window blinds presented Array1D_int SurfAdjacentZone; // Array of adjacent zones to each surface Array1D X0; // X-component of translation vector Array1D Y0; // Y-component of translation vector Array1D Z0; // Z-component of translation vector - std::unordered_map RepresentativeSurfaceMap; // A map that categorizes similar surfaces with - // a single representative surface index + std::unordered_map + RepresentativeSurfaceMap; // A map that categorizes similar surfaces with + // a single representative surface index std::vector AllHTSurfaceList; // List of all heat transfer surfaces std::vector AllIZSurfaceList; // List of all interzone heat transfer surfaces diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 798dc737ba2..4c8af39e192 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -418,14 +418,12 @@ namespace HeatBalanceIntRadExchange { // Automatic Surface Multipliers: Update values of surfaces not simulated for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; SurfNum++) { - auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; + auto &RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; state.dataSurface->SurfWinIRfromParentZone(SurfNum) = state.dataSurface->SurfWinIRfromParentZone(RepSurfNum); NetLWRadToSurf(SurfNum) = NetLWRadToSurf(RepSurfNum); } } - - #ifdef EP_Detailed_Timings epStopTime("CalcInteriorRadExchange="); #endif @@ -550,7 +548,7 @@ namespace HeatBalanceIntRadExchange { if (surfNum == state.dataSurface->Surface(surfNum).RepresentativeCalcSurfNum) { ++enclosureSurfNum; thisEnclosure.SurfacePtr(enclosureSurfNum) = surfNum; - //enclosureSurfMap[surfNum] = enclosureSurfNum; + // enclosureSurfMap[surfNum] = enclosureSurfNum; thisEnclosure.Area(enclosureSurfNum) = state.dataSurface->Surface(surfNum).Area; thisEnclosure.Emissivity(enclosureSurfNum) = state.dataConstruction->Construct(state.dataSurface->Surface(surfNum).Construction).InsideAbsorpThermal; @@ -567,8 +565,8 @@ namespace HeatBalanceIntRadExchange { // Automatic Surface Multipliers: search for corresponding enclosure surface number for (int enclSNum = priorZoneTotEnclSurfs + 1; enclSNum <= enclosureSurfNum; ++enclSNum) { if (thisEnclosure.SurfacePtr(enclSNum) == state.dataSurface->Surface(allSurfNum).RepresentativeCalcSurfNum) { - //enclosureSurfMap[allSurfNum] = enclSNum; - // Increase the area for the combined enclosure surface + // enclosureSurfMap[allSurfNum] = enclSNum; + // Increase the area for the combined enclosure surface thisEnclosure.Area(enclSNum) += state.dataSurface->Surface(allSurfNum).Area; } } diff --git a/src/EnergyPlus/HeatBalanceManager.cc b/src/EnergyPlus/HeatBalanceManager.cc index 9798a207405..6587a0e6e64 100644 --- a/src/EnergyPlus/HeatBalanceManager.cc +++ b/src/EnergyPlus/HeatBalanceManager.cc @@ -333,9 +333,12 @@ namespace HeatBalanceManager { if (state.dataSurface->UseRepresentativeSurfaceCalculations) { print(state.files.eio, "{}\n", "! ,Surface Name,Representative Surface Name"); for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; ++SurfNum) { - auto& RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; + auto &RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; if (SurfNum != RepSurfNum) { - print(state.files.eio, " Representative Surface Assignment,{},{}\n", state.dataSurface->Surface(SurfNum).Name, state.dataSurface->Surface(RepSurfNum).Name); + print(state.files.eio, + " Representative Surface Assignment,{},{}\n", + state.dataSurface->Surface(SurfNum).Name, + state.dataSurface->Surface(RepSurfNum).Name); } } } diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index 005cfc27265..1ed6a23567f 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -1189,7 +1189,8 @@ namespace SimulationManager { UtilityRoutines::MakeUPPERCase(AsString(fields.at("zone_radiant_exchange_algorithm"))) == "CARROLLMRT"; } if (fields.find("use_representative_surfaces_for_calculations") != fields.end()) { - state.dataSurface->UseRepresentativeSurfaceCalculations = UtilityRoutines::MakeUPPERCase(AsString(fields.at("use_representative_surfaces_for_calculations"))) == "YES"; + state.dataSurface->UseRepresentativeSurfaceCalculations = + UtilityRoutines::MakeUPPERCase(AsString(fields.at("use_representative_surfaces_for_calculations"))) == "YES"; } bool overrideTimestep(false); bool overrideZoneAirHeatBalAlg(false); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 43650e43a47..63f8fbcfe63 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2752,14 +2752,16 @@ namespace SurfaceGeometry { // Automatic Surface Multipliers: Assign representative heat transfer surfaces if (state.dataSurface->UseRepresentativeSurfaceCalculations) { // Conditions where surface always needs to be unique - bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; + bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || + state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; if (!forceUniqueSurface) { // Make hash key for this surface (used to determine uniqueness) state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); // Insert surface key into map. If key already exists, it will not be added. - state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey,SurfNum}); + state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey, SurfNum}); // Assign the representative surface number based on the first instance of the identical key - state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = + state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; } } } From ea67660df8bb94063e1bee628b89184cb2c8538f Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Thu, 5 Aug 2021 08:58:57 -0600 Subject: [PATCH 07/22] Don't use alias references to scalars. --- src/EnergyPlus/DataSurfaces.cc | 4 ++-- src/EnergyPlus/DataSurfaces.hh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index 148d4aae13b..ffa018bb6bb 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -597,7 +597,7 @@ Real64 SurfaceData::get_average_height(EnergyPlusData &state) const return std::abs(averageHeight) / SinTilt; } -void SurfaceData::make_hash_key(EnergyPlusData &state, const int &SurfNum) +void SurfaceData::make_hash_key(EnergyPlusData &state, const int SurfNum) { calcHashKey = SurfaceCalcHashKey(); calcHashKey.Construction = Construction; @@ -607,7 +607,7 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int &SurfNum) calcHashKey.Zone = Zone; calcHashKey.TAirRef = state.dataSurface->SurfTAirRef(SurfNum); - auto &extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; + auto extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; if (extBoundCond > 0) { calcHashKey.ExtZone = state.dataSurface->Surface(extBoundCond).Zone; } else { diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index c53981a4ed8..2cb09b81af8 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -841,7 +841,7 @@ namespace DataSurfaces { Real64 get_average_height(EnergyPlusData &state) const; - void make_hash_key(EnergyPlusData &state, const int &SurfNum); + void make_hash_key(EnergyPlusData &state, const int SurfNum); private: // Methods // Computed Shape Category From aab08e2a3c94e8b8c7f1f8c71dc78195efeddad8 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 6 Aug 2021 17:04:43 -0600 Subject: [PATCH 08/22] Change idd field order. --- idd/Energy+.idd.in | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/idd/Energy+.idd.in b/idd/Energy+.idd.in index a9acfc398c6..575715bb3b5 100644 --- a/idd/Energy+.idd.in +++ b/idd/Energy+.idd.in @@ -471,13 +471,7 @@ PerformancePrecisionTradeoffs, \key ScriptF \key CarrollMRT \default ScriptF - A3, \field Use Representative Surfaces for Calculations - \note Automatically group surfaces with similar characteristics and perform relevant calculations only once for each group. - \type choice - \key Yes - \key No - \default No - A4, \field Override Mode + A3, \field Override Mode \note The increasing mode number roughly correspond with increased speed. A description of each mode \note are shown in the documentation. When Advanced is selected the N1 field value is used. \type choice @@ -498,13 +492,19 @@ PerformancePrecisionTradeoffs, \minimum 0.1 \maximum 3.0 \default 0.3 - N2; \field MaxAllowedDelTemp + N2, \field MaxAllowedDelTemp \note Maximum surface temperature change before HVAC timestep is shortened. \note Only used when Override Mode is set to Advanced \type real \minimum 0.002 \maximum 0.1 \default 0.002 + A4; \field Use Representative Surfaces for Calculations + \note Automatically group surfaces with similar characteristics and perform relevant calculations only once for each group. + \type choice + \key Yes + \key No + \default No Building, \memo Describes parameters that are used during the simulation @@ -62019,14 +62019,14 @@ AirConditioner:VariableRefrigerantFlow, \type real \units C \default -6.0 - \note For cooling mode operation, enter the minimum inlet outdoor air dry-bulb temperature + \note For cooling mode operation, enter the minimum inlet outdoor air dry-bulb temperature \note for air-cooled units or minimum inlet water temperature for water-cooled units. \note Cooling is disabled below this temperature. N4 , \field Maximum Condenser Inlet Node Temperature in Cooling Mode \type real \units C \default 43.0 - \note For cooling mode operation, enter the maximum inlet outdoor air dry-bulb temperature + \note For cooling mode operation, enter the maximum inlet outdoor air dry-bulb temperature \note for air-cooled units or maximum inlet water temperature for water-cooled units. \note Cooling is disabled above this temperature. A3 , \field Cooling Capacity Ratio Modifier Function of Low Temperature Curve Name @@ -62125,14 +62125,14 @@ AirConditioner:VariableRefrigerantFlow, \type real \units C \default -20.0 - \note For heating mode operation, enter the minimum inlet outdoor air dry-bulb temperature + \note For heating mode operation, enter the minimum inlet outdoor air dry-bulb temperature \note for air-cooled units or minimum inlet water temperature for water-cooled units. \note Heating is disabled below this temperature. N9 , \field Maximum Condenser Inlet Node Temperature in Heating Mode \type real \units C \default 16.0 - \note For heating mode operation, enter the maximum inlet outdoor air dry-bulb temperature + \note For heating mode operation, enter the maximum inlet outdoor air dry-bulb temperature \note for air-cooled units or maximum inlet water temperature for water-cooled units. \note Heating is disabled below this temperature. A13, \field Heating Capacity Ratio Modifier Function of Low Temperature Curve Name @@ -62448,13 +62448,13 @@ AirConditioner:VariableRefrigerantFlow, N29, \field Minimum Condenser Inlet Node Temperature in Heat Recovery Mode \type real \units C - \note For heat recovery mode operation, enter the minimum inlet outdoor air dry-bulb temperature + \note For heat recovery mode operation, enter the minimum inlet outdoor air dry-bulb temperature \note for air-cooled units or minimum inlet water temperature for water-cooled units. \note Heat recovery is disabled below this temperature. N30, \field Maximum Condenser Inlet Node Temperature in Heat Recovery Mode \type real \units C - \note For heat recovery mode operation, enter the maximum inlet outdoor air dry-bulb temperature + \note For heat recovery mode operation, enter the maximum inlet outdoor air dry-bulb temperature \note for air-cooled units or maximum inlet water temperature for water-cooled units. \note Heat recovery is disabled above this temperature. A40, \field Heat Recovery Cooling Capacity Modifier Curve Name From 7677a1c028d484fdbe7100cb8a67b980d903c7d8 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 6 Aug 2021 17:05:16 -0600 Subject: [PATCH 09/22] Initial IO-ref documentaiton. --- .../overview/group-simulation-parameters.tex | 74 +++++++++++++------ 1 file changed, 52 insertions(+), 22 deletions(-) diff --git a/doc/input-output-reference/src/overview/group-simulation-parameters.tex b/doc/input-output-reference/src/overview/group-simulation-parameters.tex index 52dc18a3502..fc1a2eb06bf 100644 --- a/doc/input-output-reference/src/overview/group-simulation-parameters.tex +++ b/doc/input-output-reference/src/overview/group-simulation-parameters.tex @@ -844,15 +844,15 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} % \begin{longtable}[c]{cccccccrr} \caption{PerfLog Mode Columns\label{table:perflog_mode_columns}} \tabularnewline \toprule -Run & -Direct Coil & -Radiant Algorithm & -Override Mode & -Num of Timesteps {[}\#/hour{]}& -Min Warmup& -Suppress Resets & +Run & +Direct Coil & +Radiant Algorithm & +Override Mode & +Num of Timesteps {[}\#/hour{]}& +Min Warmup& +Suppress Resets & System Timestep {[}minute{]} & -MaxZone TempDiff & +MaxZone TempDiff & MaxAllowed DelTemp & Runtime {[}second{]} \tabularnewline \midrule @@ -880,7 +880,7 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} \end{longtable} } -This example uses 17 different simulations to arrive at the recommended values for the PerformancePrecisionTradeoffs object, but fewer trials could have been made to reach a similar conclusion. The first run (Run 1, Normal mode) shows the results of no performance precision tradeoffs being applied and is the same as not having the PerformancePrecisionTradeoffs object present. It is a good idea to use this as a first step so that a baseline of the time, errors, and oscillations are available for reference. Runs 2 through 8 are just stepping through the Override Modes (Mode01 to Mode07). Run 9 employs the ``Use Coil Direct Solution'' option, but the time gain for the simulation is not so significant. Therefore it is not used anymore in later runs. Runs 10 through 17 repeat the various override modes, but this time with the CarrollMRT radiant exchange algorithm. The biggest savings of the computation time are from Mode01 (Run 2) application. Compared to the Normal mode (Run 1) baseline, applying Mode01 (Run 2) immediately reduces the simulation time by nearly 60\%, to about only 40.9\% of that for the Normal baseline. Then again, by applying Mode02 (Run 3), the simulation time is reduced by 5.8\% compared to Mode02 (Run 1); Mode03 (Run 4) saves about 7.3\% compared to Mode02 (Run 3); and Mode04 (Run 5) saves about 7.3\% on top of Mode03 (Run 4). Compared to the normal baseline (Run 1), Mode04 (Run 5) only consumes about one third (33.1\%) of the computation time of Run 1 Normal baseline. +This example uses 17 different simulations to arrive at the recommended values for the PerformancePrecisionTradeoffs object, but fewer trials could have been made to reach a similar conclusion. The first run (Run 1, Normal mode) shows the results of no performance precision tradeoffs being applied and is the same as not having the PerformancePrecisionTradeoffs object present. It is a good idea to use this as a first step so that a baseline of the time, errors, and oscillations are available for reference. Runs 2 through 8 are just stepping through the Override Modes (Mode01 to Mode07). Run 9 employs the ``Use Coil Direct Solution'' option, but the time gain for the simulation is not so significant. Therefore it is not used anymore in later runs. Runs 10 through 17 repeat the various override modes, but this time with the CarrollMRT radiant exchange algorithm. The biggest savings of the computation time are from Mode01 (Run 2) application. Compared to the Normal mode (Run 1) baseline, applying Mode01 (Run 2) immediately reduces the simulation time by nearly 60\%, to about only 40.9\% of that for the Normal baseline. Then again, by applying Mode02 (Run 3), the simulation time is reduced by 5.8\% compared to Mode02 (Run 1); Mode03 (Run 4) saves about 7.3\% compared to Mode02 (Run 3); and Mode04 (Run 5) saves about 7.3\% on top of Mode03 (Run 4). Compared to the normal baseline (Run 1), Mode04 (Run 5) only consumes about one third (33.1\%) of the computation time of Run 1 Normal baseline. Next, when Mode05 (Run 6) is applied, the simulation time is significantly reduced again---Mode05 reduces the simulation time by nearly a half compared to Mode04 (Run 5). The run time for Mode05 (Run 6) is only 54.3\% of that for Mode04 (Run 5); and it is only 18.0\% of the Normal baseline (Run 1). Mode06 (Run 7) cuts the simulation time by about a second, or about 3.3\% compared to Mode 05 (Run 6); the overall simulation time of Mode06 (Run 7) is about 17.4\% of the Normal baseline. The final Mode07 (Run 8) cuts the simulation time by another 18.0\% compared to Mode06 (Run 7); and the overall run time for Mode07 is only 14.25\% (or about one-seventh) of that for the Run 1 Normal baseline. @@ -894,10 +894,10 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} % \begin{longtable}[c]{p{0.2in}p{0.4in}p{0.6in}p{0.7in}p{0.5in}p{0.5in}p{0.7in}p{0.7in}p{0.65in}} \caption{PerfLog Energy Columns\label{table:perflog_energy_columns}} \tabularnewline \toprule -Run & -Direct Coil & -Radiant Algorithm & -Override Mode & +Run & +Direct Coil & +Radiant Algorithm & +Override Mode & Electricity {[}MJ{]} & Natural Gas {[}MJ{]} & Water {[}m$^3${]} & @@ -927,7 +927,7 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} \end{longtable} } -The CarrollMRT options seem to have a much more significant impact on the natural gas usage; and the total water and the times are similar to the runtimes using ScriptF. So for this example, CarrollMRT does not seem to be a right choice. In these cases, the computation times are not very different from the ScriptF instances; however, the energy usage is further away from the Normal baseline. The electricity usage differences for Runs 2 through 8 are small compared to Run 1 (the Normal baseline case), and are less than 0.27\% different. The natural gas usage has more significant differences of 1.4\% to 1.9\%, and the water usage differs from 0.36\% to 0.88\%. From an energy perspective, these impacts for the ScriptF Runs 2 through 8 are probably tolerable. +The CarrollMRT options seem to have a much more significant impact on the natural gas usage; and the total water and the times are similar to the runtimes using ScriptF. So for this example, CarrollMRT does not seem to be a right choice. In these cases, the computation times are not very different from the ScriptF instances; however, the energy usage is further away from the Normal baseline. The electricity usage differences for Runs 2 through 8 are small compared to Run 1 (the Normal baseline case), and are less than 0.27\% different. The natural gas usage has more significant differences of 1.4\% to 1.9\%, and the water usage differs from 0.36\% to 0.88\%. From an energy perspective, these impacts for the ScriptF Runs 2 through 8 are probably tolerable. % table X {\scriptsize @@ -935,10 +935,10 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} % \begin{longtable}[c]{p{0.2in}p{0.4in}p{0.6in}p{0.7in}p{0.5in}p{0.5in}p{0.7in}p{0.6in}p{0.65in}} \caption{PerfLog Oscillation Columns\label{table:perflog_oscillation_columns}} \tabularnewline \toprule -Run & -Direct Coil & -Radiant Algorithm & -Override Mode & +Run & +Direct Coil & +Radiant Algorithm & +Override Mode & Oscillating {[}hour{]} & Oscillating Occupancy {[}hour{]} & Oscillating Deadband {[}hour{]} & @@ -981,7 +981,7 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} Although this input field may eventually affect all coils, the current implementation is available for only the limited number of systems and coil configurations listed in the following table. Since a linear relationship between system output and part load ratio, or speed ratio, is expected, an analytical direct solution is applied to all coils in the listed in the table when Yes is selected. More coils will be allowed when time allows. Note that this simulation parameter is global and when used every such coil model included in the entire building model will be changed to use the direct method. -The Part Load Ratio (PLR) for a single speed coil or a multiple speed coil at speed 1 is calculated using the equation below: +The Part Load Ratio (PLR) for a single speed coil or a multiple speed coil at speed 1 is calculated using the equation below: \begin{equation} \textnormal{PLR} = \frac{\textnormal{SystemLoad} - \textnormal{OutputOff}}{\textnormal{OutputFull} - \textnormal{OutputOff}} @@ -997,7 +997,7 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} OutputFull = System output at PLR = 1 as full output. -The Speed Ratio for a multiple speed coil at speed > 1 is calculated using the equation below: +The Speed Ratio for a multiple speed coil at speed > 1 is calculated using the equation below: \begin{equation} \textnormal{SpeedRatio} = \frac{\textnormal{SystemLoad} - \textnormal{OutputFull}_{i-1}}{\textnormal{OutputFull}_{i} - \textnormal{OutputFull}_{i-1}} @@ -1082,7 +1082,7 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} \paragraph{Field: Override Mode}\label{override-mode} -The Override Mode field provides a single field that will override other inputs located in the IDF/epJSON file as well as convergence related values that appear in the remaining fields of the PerformancePrecisionTradeoffs object. The Normal option (default) provides no overrides while the Mode options provide overrides based on the following tables. The Advanced option, allows the remaining fields of the PerformancePrecisionTradeoffs to be used. +The Override Mode field provides a single field that will override other inputs located in the IDF/epJSON file as well as convergence related values that appear in the remaining fields of the PerformancePrecisionTradeoffs object. The Normal option (default) provides no overrides while the Mode options provide overrides based on the following tables. The Advanced option, allows the remaining fields of the PerformancePrecisionTradeoffs to be used. % table 2 \begin{longtable}[c]{p{1.5in}p{5.0in}} @@ -1115,6 +1115,35 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} This field is only active and used when Override Mode is set to Advanced. The value provided here is used for the MaxAllowedDelTemp variable within EnergyPlus. This variable sets the maximum surface temperature change before the HVAC timestep is shortened. Similar to the MaxZoneTempDiff parameter, larger MaxAllowedDelTemp values result in fewer iterations. To understand this input completely, please review the use of the MaxAllowedDetTemp variable in the CalcHeatBalanceInsideSurf2() routine located in the HeatBalanceSurfaceManager.cc source file of EnergyPlus. The value normally used in EnergyPlus is 0.002 ($^\circ$C), which is also the default value. Testing has been done with a value of 0.1 ($^\circ$C), which increased the overall speed of EnergyPlus for most of a set of selected files that were tested. Values larger than 0.1 have not been tested. +\paragraph{Field: Use Representative Surfaces for Calculations}\label{use-representative-surfaces-for-calculations} + +If Yes, EnergyPlus will automatically group heat-transfer surfaces with similar characteristics and perform relevant calculations only once for each group. + +Surface are grouped based on the following criteria for similarity: + +\begin{itemize} + \item construction + \item orientation + \item surface height + \item zone + \item solar/wind exposure + \item other side boundary condition + \item conduction and convection heat transfer algorithms + \item movable insulation + \item frame and divider (windows only) + \item storm window constuction (windows only) + \item other minor attributes +\end{itemize} + +Surfaces with the following attributes are currently never grouped because there is a high likelyhood that they will experience dissimilar conditions throughout a simulation: + +\begin{itemize} + \item ConstructionProperty:InternalHeatSource + \item WindowShadingControl (windows only) + \item WindowProperty:AirflowControl (windows only) +\end{itemize} + +Currently, the only calculations performed across all surfaces with a group is the interior radiation exchange, where surfaces within a group are collected into a single area for participating in interior longwave radiation exchange. This will reduce the scale and complexity of the algorithm with minimal impact on accuracy. Additional calculations may be performed for a group of surfaces in future releases. An IDF example: @@ -1124,7 +1153,8 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} CarrollMRT; !- Zone Radiant Exchange Algorithm Mode06, !- Override Mode 0.3, !- MaxZoneTempDiff -0.002; !- MaxAllowedDelTemp +0.002, !- MaxAllowedDelTemp +Yes; !- Use Representative Surfaces for Calculations \end{lstlisting} From f8b05c731ff1097abe1e222600365064ae7855f4 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 6 Aug 2021 17:05:46 -0600 Subject: [PATCH 10/22] Fix view factor aggregation. --- src/EnergyPlus/DataViewFactorInformation.hh | 2 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 82 +++++++++++++++------ 2 files changed, 60 insertions(+), 24 deletions(-) diff --git a/src/EnergyPlus/DataViewFactorInformation.hh b/src/EnergyPlus/DataViewFactorInformation.hh index 22010e0e509..e483f9b6ae6 100644 --- a/src/EnergyPlus/DataViewFactorInformation.hh +++ b/src/EnergyPlus/DataViewFactorInformation.hh @@ -68,7 +68,7 @@ namespace DataViewFactorInformation { std::vector ZoneNames; // Zone names which are part of this enclosure std::vector ZoneNums; // Zones which are part of this enclosure int NumOfSurfaces; // Number of surfaces in the enclosure - Array2D F; // View Factors + Array2D F; // View Factors: F(i,j) = from surface j to surface i (counter-intuitive, but optimized for performance) Array2D ScriptF; // Hottel's Script F //Tuned Transposed Array1D Area; // Surface area Array1D Emissivity; // Surface emissivity diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 4c8af39e192..960755aeaf1 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1329,34 +1329,70 @@ namespace HeatBalanceIntRadExchange { state.dataIPShortCut->cAlphaFieldNames, state.dataIPShortCut->cNumericFieldNames); - if (NumNums < pow_2(N)) { - ShowWarningError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); - ShowContinueError( - state, - format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a zero view factor.", - NumNums, - pow_2(N))); - } F = 0.0; numinx1 = 0; + if (!state.dataSurface->UseRepresentativeSurfaceCalculations) { + if (NumNums < pow_2(N)) { + ShowWarningError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); + ShowContinueError( + state, + format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a zero view factor.", + NumNums, + pow_2(N))); + } - // TODO: Automatic Window Multipliers, throw error if view factors aren't the same for representative surfaces - for (index = 2; index <= NumAlphas; index += 2) { - inx1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), enclosureSurfaceNames, N); - inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); - if (inx1 == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); - ErrorsFound = true; + for (index = 2; index <= NumAlphas; index += 2) { + inx1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), enclosureSurfaceNames, N); + inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); + if (inx1 == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); + ErrorsFound = true; + } + if (inx2 == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, + "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); + ErrorsFound = true; + } + ++numinx1; + if (inx1 > 0 && inx2 > 0) F(inx2, inx1) = state.dataIPShortCut->rNumericArgs(numinx1); } - if (inx2 == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, - "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); - ErrorsFound = true; + } else { + + // Aggregate view factors for representative surfaces + for (index = 2; index <= NumAlphas; index += 2) { + int fromSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), state.dataSurface->Surface, N); + int toSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), state.dataSurface->Surface, N); + if (fromSurfNum == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); + ErrorsFound = true; + } + if (toSurfNum == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, + "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); + ErrorsFound = true; + } + ++numinx1; + if (fromSurfNum > 0 && toSurfNum > 0) { + auto &fromSurf = state.dataSurface->Surface(fromSurfNum); + auto &toSurf = state.dataSurface->Surface(toSurfNum); + int repFromSurfNum = fromSurf.RepresentativeCalcSurfNum; + int repToSurfNum = toSurf.RepresentativeCalcSurfNum; + // "From" surfaces within a representative group should all have the same view factors to the other surfaces + // "To" surfaces within a representative group should aggregate the view factors from other surfaces + if (fromSurfNum == repFromSurfNum) { + auto &repFromSurf = state.dataSurface->Surface(repFromSurfNum); + auto &repToSurf = state.dataSurface->Surface(repToSurfNum); + int fromInx = UtilityRoutines::FindItemInList(repFromSurf.Name, enclosureSurfaceNames, N); + int toInx = UtilityRoutines::FindItemInList(repToSurf.Name, enclosureSurfaceNames, N); + F(toInx, fromInx) += state.dataIPShortCut->rNumericArgs(numinx1); + } + // TODO: Track view factors to ensure that "From" surfaces have similar view factors? + } } - ++numinx1; - if (inx1 > 0 && inx2 > 0) F(inx2, inx1) = state.dataIPShortCut->rNumericArgs(numinx1); } enclosureSurfaceNames.deallocate(); } From d53f7fa113bd6bb005df70231c41bcf581d5e349 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 6 Aug 2021 17:10:37 -0600 Subject: [PATCH 11/22] Temporarily hard-code representative surface calcs. --- src/EnergyPlus/SimulationManager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index 1ed6a23567f..b4bfff3c03c 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -1322,7 +1322,7 @@ namespace SimulationManager { } } } - + state.dataSurface->UseRepresentativeSurfaceCalculations = true; if (ErrorsFound) { ShowFatalError(state, "Errors found getting Project Input"); } From e69298ecb3071cb0e69065d098ecbce8298f71b2 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 9 Aug 2021 10:37:51 -0600 Subject: [PATCH 12/22] Fix errors spotted by CI. --- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 4 ++-- src/EnergyPlus/SurfaceGeometry.cc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 960755aeaf1..6842650aa2e 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1362,8 +1362,8 @@ namespace HeatBalanceIntRadExchange { // Aggregate view factors for representative surfaces for (index = 2; index <= NumAlphas; index += 2) { - int fromSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), state.dataSurface->Surface, N); - int toSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), state.dataSurface->Surface, N); + int fromSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), state.dataSurface->Surface); + int toSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), state.dataSurface->Surface); if (fromSurfNum == 0) { ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 63f8fbcfe63..96624c9b027 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2750,7 +2750,7 @@ namespace SurfaceGeometry { state.dataSurface->SurfActiveConstruction(SurfNum) = state.dataSurface->Surface(SurfNum).Construction; state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; // Automatic Surface Multipliers: Assign representative heat transfer surfaces - if (state.dataSurface->UseRepresentativeSurfaceCalculations) { + if (state.dataSurface->UseRepresentativeSurfaceCalculations && state.dataSurface->Surface(SurfNum).HeatTransSurf) { // Conditions where surface always needs to be unique bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; From 1593f98ab57deed2e63b9a9211f08b813f362982 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 9 Aug 2021 10:42:11 -0600 Subject: [PATCH 13/22] Apply clang formatting. --- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index 6842650aa2e..e9fb5d2b44a 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1334,11 +1334,11 @@ namespace HeatBalanceIntRadExchange { if (!state.dataSurface->UseRepresentativeSurfaceCalculations) { if (NumNums < pow_2(N)) { ShowWarningError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); - ShowContinueError( - state, - format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a zero view factor.", - NumNums, - pow_2(N))); + ShowContinueError(state, + format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a " + "zero view factor.", + NumNums, + pow_2(N))); } for (index = 2; index <= NumAlphas; index += 2) { @@ -1346,7 +1346,8 @@ namespace HeatBalanceIntRadExchange { inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); if (inx1 == 0) { ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); + ShowContinueError(state, + "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); ErrorsFound = true; } if (inx2 == 0) { @@ -1366,7 +1367,8 @@ namespace HeatBalanceIntRadExchange { int toSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), state.dataSurface->Surface); if (fromSurfNum == 0) { ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); + ShowContinueError(state, + "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); ErrorsFound = true; } if (toSurfNum == 0) { From d295c36d34e4c1f1425444ef1dc006199508b0e7 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 9 Aug 2021 11:02:14 -0600 Subject: [PATCH 14/22] Don't use representative calculations with user view factors. --- .../overview/group-simulation-parameters.tex | 5 +- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 84 +++++-------------- src/EnergyPlus/SurfaceGeometry.cc | 3 +- 3 files changed, 28 insertions(+), 64 deletions(-) diff --git a/doc/input-output-reference/src/overview/group-simulation-parameters.tex b/doc/input-output-reference/src/overview/group-simulation-parameters.tex index fc1a2eb06bf..69f78b98e15 100644 --- a/doc/input-output-reference/src/overview/group-simulation-parameters.tex +++ b/doc/input-output-reference/src/overview/group-simulation-parameters.tex @@ -1131,14 +1131,15 @@ \subsection{PerformancePrecisionTradeoffs}\label{performanceprecisiontradeoffs} \item conduction and convection heat transfer algorithms \item movable insulation \item frame and divider (windows only) - \item storm window constuction (windows only) + \item storm window construction (windows only) \item other minor attributes \end{itemize} -Surfaces with the following attributes are currently never grouped because there is a high likelyhood that they will experience dissimilar conditions throughout a simulation: +Surfaces with the following objects defined are currently never grouped because there is a high likelihood that they will experience dissimilar conditions throughout a simulation: \begin{itemize} \item ConstructionProperty:InternalHeatSource + \item ZoneProperty:UserViewFactors:BySurfaceName \item WindowShadingControl (windows only) \item WindowProperty:AirflowControl (windows only) \end{itemize} diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index e9fb5d2b44a..e75e4410852 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -1331,71 +1331,33 @@ namespace HeatBalanceIntRadExchange { F = 0.0; numinx1 = 0; - if (!state.dataSurface->UseRepresentativeSurfaceCalculations) { - if (NumNums < pow_2(N)) { - ShowWarningError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); - ShowContinueError(state, - format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a " - "zero view factor.", - NumNums, - pow_2(N))); - } + if (NumNums < pow_2(N)) { + ShowWarningError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", not enough values."); + ShowContinueError(state, + format("...Number of input values [{}] is less than the required number=[{}] Missing surface pairs will have a " + "zero view factor.", + NumNums, + pow_2(N))); + } - for (index = 2; index <= NumAlphas; index += 2) { - inx1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), enclosureSurfaceNames, N); - inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); - if (inx1 == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, - "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); - ErrorsFound = true; - } - if (inx2 == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, - "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); - ErrorsFound = true; - } - ++numinx1; - if (inx1 > 0 && inx2 > 0) F(inx2, inx1) = state.dataIPShortCut->rNumericArgs(numinx1); + for (index = 2; index <= NumAlphas; index += 2) { + inx1 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), enclosureSurfaceNames, N); + inx2 = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), enclosureSurfaceNames, N); + if (inx1 == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); + ErrorsFound = true; } - } else { - - // Aggregate view factors for representative surfaces - for (index = 2; index <= NumAlphas; index += 2) { - int fromSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index), state.dataSurface->Surface); - int toSurfNum = UtilityRoutines::FindItemInList(state.dataIPShortCut->cAlphaArgs(index + 1), state.dataSurface->Surface); - if (fromSurfNum == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, - "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index) + "\", not in this zone or enclosure."); - ErrorsFound = true; - } - if (toSurfNum == 0) { - ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); - ShowContinueError(state, - "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); - ErrorsFound = true; - } - ++numinx1; - if (fromSurfNum > 0 && toSurfNum > 0) { - auto &fromSurf = state.dataSurface->Surface(fromSurfNum); - auto &toSurf = state.dataSurface->Surface(toSurfNum); - int repFromSurfNum = fromSurf.RepresentativeCalcSurfNum; - int repToSurfNum = toSurf.RepresentativeCalcSurfNum; - // "From" surfaces within a representative group should all have the same view factors to the other surfaces - // "To" surfaces within a representative group should aggregate the view factors from other surfaces - if (fromSurfNum == repFromSurfNum) { - auto &repFromSurf = state.dataSurface->Surface(repFromSurfNum); - auto &repToSurf = state.dataSurface->Surface(repToSurfNum); - int fromInx = UtilityRoutines::FindItemInList(repFromSurf.Name, enclosureSurfaceNames, N); - int toInx = UtilityRoutines::FindItemInList(repToSurf.Name, enclosureSurfaceNames, N); - F(toInx, fromInx) += state.dataIPShortCut->rNumericArgs(numinx1); - } - // TODO: Track view factors to ensure that "From" surfaces have similar view factors? - } + if (inx2 == 0) { + ShowSevereError(state, "GetInputViewFactors: " + cCurrentModuleObject + "=\"" + EnclosureName + "\", invalid surface name."); + ShowContinueError(state, + "...Surface name=\"" + state.dataIPShortCut->cAlphaArgs(index + 2) + "\", not in this zone or enclosure."); + ErrorsFound = true; } + ++numinx1; + if (inx1 > 0 && inx2 > 0) F(inx2, inx1) = state.dataIPShortCut->rNumericArgs(numinx1); } + enclosureSurfaceNames.deallocate(); } } diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 96624c9b027..166d37dca18 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2750,7 +2750,8 @@ namespace SurfaceGeometry { state.dataSurface->SurfActiveConstruction(SurfNum) = state.dataSurface->Surface(SurfNum).Construction; state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; // Automatic Surface Multipliers: Assign representative heat transfer surfaces - if (state.dataSurface->UseRepresentativeSurfaceCalculations && state.dataSurface->Surface(SurfNum).HeatTransSurf) { + if (state.dataSurface->UseRepresentativeSurfaceCalculations && state.dataSurface->Surface(SurfNum).HeatTransSurf && + state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, "ZoneProperty:UserViewFactors:BySurfaceName") == 0) { // Conditions where surface always needs to be unique bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; From b7cf7f576efbc27f2b7dacb68cbdc96ff41c3226 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 9 Aug 2021 13:26:41 -0600 Subject: [PATCH 15/22] Add unit test for representative surface detection. --- src/EnergyPlus/DataSurfaces.cc | 11 ++++++ src/EnergyPlus/DataSurfaces.hh | 3 ++ src/EnergyPlus/SurfaceGeometry.cc | 8 +---- tst/EnergyPlus/unit/DataSurfaces.unit.cc | 46 ++++++++++++++++++++++++ 4 files changed, 61 insertions(+), 7 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index ffa018bb6bb..bcf72c32a7e 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -639,6 +639,17 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int SurfNum) calcHashKey.InsideHeatSourceTermSchedule = InsideHeatSourceTermSchedule; } +void SurfaceData::set_representative_surface(EnergyPlusData &state, const int SurfNum) +{ + // Make hash key for this surface (used to determine uniqueness) + state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); + // Insert surface key into map. If key already exists, it will not be added. + state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey, SurfNum}); + // Assign the representative surface number based on the first instance of the identical key + state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = + state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; +} + // Functions void SetSurfaceOutBulbTempAt(EnergyPlusData &state) diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 2cb09b81af8..14a000b981d 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -843,6 +843,8 @@ namespace DataSurfaces { void make_hash_key(EnergyPlusData &state, const int SurfNum); + void set_representative_surface(EnergyPlusData &state, const int SurfNum); + private: // Methods // Computed Shape Category ShapeCat computed_shapeCat() const; @@ -1753,6 +1755,7 @@ struct SurfacesData : BaseGlobalStruct this->X0.deallocate(); this->Y0.deallocate(); this->Z0.deallocate(); + this->RepresentativeSurfaceMap.clear(); this->AllHTSurfaceList.clear(); this->AllIZSurfaceList.clear(); this->AllHTNonWindowSurfaceList.clear(); diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 166d37dca18..0fba40f9982 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2756,13 +2756,7 @@ namespace SurfaceGeometry { bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; if (!forceUniqueSurface) { - // Make hash key for this surface (used to determine uniqueness) - state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); - // Insert surface key into map. If key already exists, it will not be added. - state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey, SurfNum}); - // Assign the representative surface number based on the first instance of the identical key - state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = - state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; + state.dataSurface->Surface(SurfNum).set_representative_surface(state, SurfNum); } } } diff --git a/tst/EnergyPlus/unit/DataSurfaces.unit.cc b/tst/EnergyPlus/unit/DataSurfaces.unit.cc index d6573d671aa..7e43e18e725 100644 --- a/tst/EnergyPlus/unit/DataSurfaces.unit.cc +++ b/tst/EnergyPlus/unit/DataSurfaces.unit.cc @@ -359,3 +359,49 @@ TEST_F(EnergyPlusFixture, SurfaceTest_AverageHeightL) EXPECT_DOUBLE_EQ(s.get_average_height(*state), 0.75); } } + +TEST_F(EnergyPlusFixture, SurfaceTest_HashMap) +{ + int numSurfs = state->dataSurface->TotSurfaces = 3; + state->dataSurface->Surface.allocate(numSurfs); + state->dataSurface->SurfTAirRef.allocate(numSurfs); + state->dataSurface->SurfIntConvCoeffIndex.allocate(numSurfs); + state->dataSurface->SurfExtConvCoeffIndex.allocate(numSurfs); + state->dataSurface->SurfWinStormWinConstr.allocate(numSurfs); + state->dataSurface->SurfWinStormWinConstr.allocate(numSurfs); + state->dataSurface->SurfMaterialMovInsulExt.allocate(numSurfs); + state->dataSurface->SurfMaterialMovInsulInt.allocate(numSurfs); + state->dataSurface->SurfSchedMovInsulExt.allocate(numSurfs); + state->dataSurface->SurfSchedMovInsulInt.allocate(numSurfs); + state->dataSurface->SurfExternalShadingSchInd.allocate(numSurfs); + state->dataSurface->SurfSurroundingSurfacesNum.allocate(numSurfs); + state->dataSurface->SurfLinkedOutAirNode.allocate(numSurfs); + + for (int SurfNum = 1; SurfNum <= numSurfs; SurfNum++) { + state->dataSurface->Surface(SurfNum).set_representative_surface(*state, SurfNum); + } + + EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 1); + + state->dataSurface->RepresentativeSurfaceMap.clear(); + + state->dataSurface->Surface(1).Area = 20.0; + state->dataSurface->Surface(2).Azimuth = 180.0; + state->dataSurface->Surface(3).Azimuth = 180.04; + + for (int SurfNum = 1; SurfNum <= numSurfs; SurfNum++) { + state->dataSurface->Surface(SurfNum).set_representative_surface(*state, SurfNum); + } + + EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 2); + + state->dataSurface->RepresentativeSurfaceMap.clear(); + + state->dataSurface->Surface(3).Azimuth = 180.05; + + for (int SurfNum = 1; SurfNum <= numSurfs; SurfNum++) { + state->dataSurface->Surface(SurfNum).set_representative_surface(*state, SurfNum); + } + + EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 3); +} \ No newline at end of file From e7852f3fb410f762cefd353d3b1e1df1acb572dc Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Tue, 10 Aug 2021 16:24:48 -0600 Subject: [PATCH 16/22] Fix location of surface results update. --- src/EnergyPlus/HeatBalanceIntRadExchange.cc | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/EnergyPlus/HeatBalanceIntRadExchange.cc b/src/EnergyPlus/HeatBalanceIntRadExchange.cc index e75e4410852..dce9a580eac 100644 --- a/src/EnergyPlus/HeatBalanceIntRadExchange.cc +++ b/src/EnergyPlus/HeatBalanceIntRadExchange.cc @@ -415,12 +415,16 @@ namespace HeatBalanceIntRadExchange { } } } + } - // Automatic Surface Multipliers: Update values of surfaces not simulated - for (int SurfNum = 1; SurfNum <= state.dataSurface->TotSurfaces; SurfNum++) { + // Automatic Surface Multipliers: Update values of surfaces not simulated + if (state.dataSurface->UseRepresentativeSurfaceCalculations) { + for (auto SurfNum : state.dataSurface->AllHTSurfaceList) { auto &RepSurfNum = state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum; - state.dataSurface->SurfWinIRfromParentZone(SurfNum) = state.dataSurface->SurfWinIRfromParentZone(RepSurfNum); - NetLWRadToSurf(SurfNum) = NetLWRadToSurf(RepSurfNum); + if (SurfNum != RepSurfNum) { + state.dataSurface->SurfWinIRfromParentZone(SurfNum) = state.dataSurface->SurfWinIRfromParentZone(RepSurfNum); + NetLWRadToSurf(SurfNum) = NetLWRadToSurf(RepSurfNum); + } } } From caa4bcb6a6b8a5089cec9df7862a57682da11cae Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Wed, 11 Aug 2021 12:29:15 -0600 Subject: [PATCH 17/22] Remove forced representative surfaces and enhance unit testing. --- src/EnergyPlus/SimulationManager.cc | 1 - tst/EnergyPlus/unit/DataSurfaces.unit.cc | 37 +++++++++++++++--------- 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/src/EnergyPlus/SimulationManager.cc b/src/EnergyPlus/SimulationManager.cc index b4bfff3c03c..615927aad50 100644 --- a/src/EnergyPlus/SimulationManager.cc +++ b/src/EnergyPlus/SimulationManager.cc @@ -1322,7 +1322,6 @@ namespace SimulationManager { } } } - state.dataSurface->UseRepresentativeSurfaceCalculations = true; if (ErrorsFound) { ShowFatalError(state, "Errors found getting Project Input"); } diff --git a/tst/EnergyPlus/unit/DataSurfaces.unit.cc b/tst/EnergyPlus/unit/DataSurfaces.unit.cc index 7e43e18e725..877618641ec 100644 --- a/tst/EnergyPlus/unit/DataSurfaces.unit.cc +++ b/tst/EnergyPlus/unit/DataSurfaces.unit.cc @@ -362,26 +362,29 @@ TEST_F(EnergyPlusFixture, SurfaceTest_AverageHeightL) TEST_F(EnergyPlusFixture, SurfaceTest_HashMap) { - int numSurfs = state->dataSurface->TotSurfaces = 3; + int numSurfs = state->dataSurface->TotSurfaces = 4; state->dataSurface->Surface.allocate(numSurfs); - state->dataSurface->SurfTAirRef.allocate(numSurfs); - state->dataSurface->SurfIntConvCoeffIndex.allocate(numSurfs); - state->dataSurface->SurfExtConvCoeffIndex.allocate(numSurfs); - state->dataSurface->SurfWinStormWinConstr.allocate(numSurfs); - state->dataSurface->SurfWinStormWinConstr.allocate(numSurfs); - state->dataSurface->SurfMaterialMovInsulExt.allocate(numSurfs); - state->dataSurface->SurfMaterialMovInsulInt.allocate(numSurfs); - state->dataSurface->SurfSchedMovInsulExt.allocate(numSurfs); - state->dataSurface->SurfSchedMovInsulInt.allocate(numSurfs); - state->dataSurface->SurfExternalShadingSchInd.allocate(numSurfs); - state->dataSurface->SurfSurroundingSurfacesNum.allocate(numSurfs); - state->dataSurface->SurfLinkedOutAirNode.allocate(numSurfs); + state->dataSurface->SurfTAirRef.dimension(numSurfs,0); + state->dataSurface->SurfIntConvCoeffIndex.dimension(numSurfs,0); + state->dataSurface->SurfExtConvCoeffIndex.dimension(numSurfs,0); + state->dataSurface->SurfWinStormWinConstr.dimension(numSurfs,0); + state->dataSurface->SurfMaterialMovInsulExt.dimension(numSurfs,0); + state->dataSurface->SurfMaterialMovInsulInt.dimension(numSurfs,0); + state->dataSurface->SurfSchedMovInsulExt.dimension(numSurfs,0); + state->dataSurface->SurfSchedMovInsulInt.dimension(numSurfs,0); + state->dataSurface->SurfExternalShadingSchInd.dimension(numSurfs,0); + state->dataSurface->SurfSurroundingSurfacesNum.dimension(numSurfs,0); + state->dataSurface->SurfLinkedOutAirNode.dimension(numSurfs,0); for (int SurfNum = 1; SurfNum <= numSurfs; SurfNum++) { state->dataSurface->Surface(SurfNum).set_representative_surface(*state, SurfNum); } EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 1); + EXPECT_EQ(state->dataSurface->Surface(1).RepresentativeCalcSurfNum, 1); + EXPECT_EQ(state->dataSurface->Surface(2).RepresentativeCalcSurfNum, 1); + EXPECT_EQ(state->dataSurface->Surface(3).RepresentativeCalcSurfNum, 1); + EXPECT_EQ(state->dataSurface->Surface(4).RepresentativeCalcSurfNum, 1); state->dataSurface->RepresentativeSurfaceMap.clear(); @@ -394,6 +397,10 @@ TEST_F(EnergyPlusFixture, SurfaceTest_HashMap) } EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 2); + EXPECT_EQ(state->dataSurface->Surface(1).RepresentativeCalcSurfNum, 1); + EXPECT_EQ(state->dataSurface->Surface(2).RepresentativeCalcSurfNum, 2); + EXPECT_EQ(state->dataSurface->Surface(3).RepresentativeCalcSurfNum, 2); + EXPECT_EQ(state->dataSurface->Surface(4).RepresentativeCalcSurfNum, 1); state->dataSurface->RepresentativeSurfaceMap.clear(); @@ -404,4 +411,8 @@ TEST_F(EnergyPlusFixture, SurfaceTest_HashMap) } EXPECT_EQ(state->dataSurface->RepresentativeSurfaceMap.size(), 3); + EXPECT_EQ(state->dataSurface->Surface(1).RepresentativeCalcSurfNum, 1); + EXPECT_EQ(state->dataSurface->Surface(2).RepresentativeCalcSurfNum, 2); + EXPECT_EQ(state->dataSurface->Surface(3).RepresentativeCalcSurfNum, 3); + EXPECT_EQ(state->dataSurface->Surface(4).RepresentativeCalcSurfNum, 1); } \ No newline at end of file From 2fea556955e57e3032e2149dfacbdf9c934c4eed Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Wed, 11 Aug 2021 12:45:05 -0600 Subject: [PATCH 18/22] Apply clang format. --- tst/EnergyPlus/unit/DataSurfaces.unit.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tst/EnergyPlus/unit/DataSurfaces.unit.cc b/tst/EnergyPlus/unit/DataSurfaces.unit.cc index 877618641ec..2ce88fce2d8 100644 --- a/tst/EnergyPlus/unit/DataSurfaces.unit.cc +++ b/tst/EnergyPlus/unit/DataSurfaces.unit.cc @@ -364,17 +364,17 @@ TEST_F(EnergyPlusFixture, SurfaceTest_HashMap) { int numSurfs = state->dataSurface->TotSurfaces = 4; state->dataSurface->Surface.allocate(numSurfs); - state->dataSurface->SurfTAirRef.dimension(numSurfs,0); - state->dataSurface->SurfIntConvCoeffIndex.dimension(numSurfs,0); - state->dataSurface->SurfExtConvCoeffIndex.dimension(numSurfs,0); - state->dataSurface->SurfWinStormWinConstr.dimension(numSurfs,0); - state->dataSurface->SurfMaterialMovInsulExt.dimension(numSurfs,0); - state->dataSurface->SurfMaterialMovInsulInt.dimension(numSurfs,0); - state->dataSurface->SurfSchedMovInsulExt.dimension(numSurfs,0); - state->dataSurface->SurfSchedMovInsulInt.dimension(numSurfs,0); - state->dataSurface->SurfExternalShadingSchInd.dimension(numSurfs,0); - state->dataSurface->SurfSurroundingSurfacesNum.dimension(numSurfs,0); - state->dataSurface->SurfLinkedOutAirNode.dimension(numSurfs,0); + state->dataSurface->SurfTAirRef.dimension(numSurfs, 0); + state->dataSurface->SurfIntConvCoeffIndex.dimension(numSurfs, 0); + state->dataSurface->SurfExtConvCoeffIndex.dimension(numSurfs, 0); + state->dataSurface->SurfWinStormWinConstr.dimension(numSurfs, 0); + state->dataSurface->SurfMaterialMovInsulExt.dimension(numSurfs, 0); + state->dataSurface->SurfMaterialMovInsulInt.dimension(numSurfs, 0); + state->dataSurface->SurfSchedMovInsulExt.dimension(numSurfs, 0); + state->dataSurface->SurfSchedMovInsulInt.dimension(numSurfs, 0); + state->dataSurface->SurfExternalShadingSchInd.dimension(numSurfs, 0); + state->dataSurface->SurfSurroundingSurfacesNum.dimension(numSurfs, 0); + state->dataSurface->SurfLinkedOutAirNode.dimension(numSurfs, 0); for (int SurfNum = 1; SurfNum <= numSurfs; SurfNum++) { state->dataSurface->Surface(SurfNum).set_representative_surface(*state, SurfNum); From 221967a3ef7bee8c9fbf6a0c6ade9555ca83861c Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Fri, 20 Aug 2021 10:39:16 -0600 Subject: [PATCH 19/22] Add enclosure numbers to surface hash. Add example file. --- src/EnergyPlus/DataSurfaces.cc | 3 + src/EnergyPlus/DataSurfaces.hh | 9 +- testfiles/CMakeLists.txt | 1 + ...n_ASHRAE9012016_SchoolSecondary_Denver.idf | 32341 ++++++++++++++++ 4 files changed, 32352 insertions(+), 2 deletions(-) create mode 100644 testfiles/PerformancePrecision_ASHRAE9012016_SchoolSecondary_Denver.idf diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index bcf72c32a7e..b53aad530cd 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -605,13 +605,16 @@ void SurfaceData::make_hash_key(EnergyPlusData &state, const int SurfNum) calcHashKey.Tilt = round(Tilt * 10.0) / 10.0; calcHashKey.Height = round(Height * 10.0) / 10.0; calcHashKey.Zone = Zone; + calcHashKey.EnclIndex = SolarEnclIndex; calcHashKey.TAirRef = state.dataSurface->SurfTAirRef(SurfNum); auto extBoundCond = state.dataSurface->Surface(SurfNum).ExtBoundCond; if (extBoundCond > 0) { calcHashKey.ExtZone = state.dataSurface->Surface(extBoundCond).Zone; + calcHashKey.ExtEnclIndex = state.dataSurface->Surface(extBoundCond).SolarEnclIndex; } else { calcHashKey.ExtZone = 0; + calcHashKey.ExtEnclIndex = 0; } calcHashKey.ExtSolar = ExtSolar; diff --git a/src/EnergyPlus/DataSurfaces.hh b/src/EnergyPlus/DataSurfaces.hh index 14a000b981d..5af471f1487 100644 --- a/src/EnergyPlus/DataSurfaces.hh +++ b/src/EnergyPlus/DataSurfaces.hh @@ -566,8 +566,10 @@ namespace DataSurfaces { Real64 Tilt; // Angle (deg) between the ground outward normal and the surface outward normal Real64 Height; // Height of the surface (m) int Zone; // Interior environment or zone the surface is a part of + int EnclIndex; // Pointer to enclosure this surface belongs to int TAirRef; // Flag for reference air temperature int ExtZone; // For an "interzone" surface, this is the adjacent ZONE number (not adjacent SURFACE number). + int ExtEnclIndex; // For an "interzone" surface, this is the adjacent ENCLOSURE number bool ExtSolar; // True if the "outside" of the surface is exposed to solar bool ExtWind; // True if the "outside" of the surface is exposed to wind Real64 ViewFactorGround; // View factor to the ground from the exterior of the surface for diffuse solar radiation @@ -614,8 +616,10 @@ namespace DataSurfaces { hash()(Tilt), hash()(Height), hash()(Zone), + hash()(EnclIndex), hash()(TAirRef), hash()(ExtZone), + hash()(ExtEnclIndex), hash()(ExtSolar), hash()(ExtWind), hash()(ViewFactorGround), @@ -654,8 +658,9 @@ namespace DataSurfaces { bool operator==(const SurfaceCalcHashKey &other) const { return (Construction == other.Construction && Azimuth == other.Azimuth && Tilt == other.Tilt && Height == other.Height && - Zone == other.Zone && ExtZone == other.ExtZone && ExtSolar == other.ExtSolar && ExtWind == other.ExtWind && - ViewFactorGround == other.ViewFactorGround && ViewFactorSky == other.ViewFactorSky && + Zone == other.Zone && EnclIndex == other.EnclIndex && ExtZone == other.ExtZone && ExtEnclIndex == other.ExtEnclIndex && + ExtSolar == other.ExtSolar && ExtWind == other.ExtWind && ViewFactorGround == other.ViewFactorGround && + ViewFactorSky == other.ViewFactorSky && HeatTransferAlgorithm == other.HeatTransferAlgorithm && IntConvCoeff == other.IntConvCoeff && ExtConvCoeff == other.ExtConvCoeff && OSCPtr == other.OSCPtr && OSCMPtr == other.OSCMPtr && diff --git a/testfiles/CMakeLists.txt b/testfiles/CMakeLists.txt index 82c1c845d00..1de225dd7a7 100644 --- a/testfiles/CMakeLists.txt +++ b/testfiles/CMakeLists.txt @@ -386,6 +386,7 @@ add_simulation_test(IDF_FILE PackagedTerminalAirConditionerVSAS.idf EPW_FILE USA add_simulation_test(IDF_FILE PackagedTerminalHeatPump.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) add_simulation_test(IDF_FILE PackagedTerminalHeatPumpVSAS.idf EPW_FILE USA_FL_Miami.Intl.AP.722020_TMY3.epw) add_simulation_test(IDF_FILE PassiveTrombeWall.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) +add_simulation_test(IDF_FILE PerformancePrecision_ASHRAE9012016_SchoolSecondary_Denver.idf EPW_FILE USA_CO_Golden-NREL.724666_TMY3.epw) add_simulation_test(IDF_FILE PipeHeatTransfer_Outair.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE PipeHeatTransfer_Schedule.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) add_simulation_test(IDF_FILE PipeHeatTransfer_Underground.idf EPW_FILE USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw) diff --git a/testfiles/PerformancePrecision_ASHRAE9012016_SchoolSecondary_Denver.idf b/testfiles/PerformancePrecision_ASHRAE9012016_SchoolSecondary_Denver.idf new file mode 100644 index 00000000000..a90cf543c1c --- /dev/null +++ b/testfiles/PerformancePrecision_ASHRAE9012016_SchoolSecondary_Denver.idf @@ -0,0 +1,32341 @@ +! The 90.1 Prototype Building Models were developed by Pacific Northwest National Laboratory (PNNL), +! under contract with the U.S. Department of Energy (DOE). These building models were derived from +! DOE’s Commercial Reference Building Models with modifications based on input from the ASHRAE Standard 90.1 committee, +! the Advanced Energy Design Guide series, and building industry experts. +! The prototypes models were developed to quantify energy saving impacts from +! newly published editions of ASHRAE Standard 90.1. The basic building descriptions can be found in the Scorecards +! posted at this website. Detailed descriptions of the prototype model development and addenda modeling +! strategies can be found in the following reports: +! "Achieving 30% Goal: Energy and Cost Saving Analysis of ASHRAE/IES Standard 90.1-2010." +! "Enhancements to ASHRAE Standard 90.1 Prototype Building Models" +! "Energy Savings Analysis: ANSI/ASHRAE/IES Standard 90.1-2016" +! "ANSI/ASHRAE/IES Standard 90.1-2013 Determination of Energy Savings: Quantitative Analysis" +! +!BEGIN ECONOMIZER MAP +! Economizer Name, DX COIL Name +! PSZ-AC_1:5_OA_Controller, PSZ-AC_1:5_CoolC DXCoil +! PSZ-AC_2:6_OA_Controller, PSZ-AC_2:6_CoolC DXCoil +! PSZ-AC_3:7_OA_Controller, PSZ-AC_3:7_CoolC DXCoil +! PSZ-AC_4:8_OA_Controller, PSZ-AC_4:8_CoolC DXCoil +! PSZ-AC_5:9_OA_Controller, PSZ-AC_5:9_CoolC DXCoil +! END ECONOMIZER MAP +! +! +! BEGIN EMS PROGRAM MAP +! EMS PROGRAM, DX COIL Name +! PSZ1_5, PSZ-AC_1:5_COOLC DXCOIL +! PSZ2_6, PSZ-AC_2:6_COOLC DXCOIL +! PSZ3_7, PSZ-AC_3:7_COOLC DXCOIL +! PSZ4_8, PSZ-AC_4:8_COOLC DXCOIL +! PSZ5_9, PSZ-AC_5:9_COOLC DXCOIL +! END EMS PROGRAM MAP +! +! +! WeatherFile: USA_CO_Denver-Aurora-Buckley.AFB.724695_TMY3.epw +! GPARM parameters as input: +! Case = DOE.determination2016_SchoolSecondary_STD2016_Boise +! weatherfile = USA_CO_Denver-Aurora-Buckley.AFB.724695_TMY3.epw +! ground_tempt = Zone5B_nonres_R15_2ftV_SchoolSecondary_Denver_STD2016.gtp +! avg_oa_tempt_ip = 49.91 +! maxdiff_oa_tempt_ip = 42.66 +! ext_wall_type = SteelFramedWall +! nonres_ext_wall_ufactor = 0.312304465 +! roof_type = LightweightRoof +! nonres_roof_ufactor = 0.181704416 +! nonres_window = Window_U_0.40_SHGC_0.38 +! nonres_skylight = Window_U_0.50_SHGC_0.40 +! daylighting_control = yes +! sidelighting_control = yes_AY +! audi_sidelighting_control = yes +! roof_emissivity = 0.9 +! roof_solar_absorp = 0.77 +! LPD_classroom = 9.902797584 +! LPD_corridor = 7.104180875 +! LPD_lobby = 10.76391042 +! LPD_mechanical = 10.2257149 +! LPD_bath = 9.149323854 +! LPD_office = 10.01043669 +! LPD_gym = 5.381955209 +! LPD_kitchen = 11.40974504 +! LPD_cafeteria = 6.781263563 +! LPD_library = 8.395850125 +! LPD_auditorium = 6.781263563 +! exterior_lights_watts = 0 +! exterior_lights_watts_a = 441.8 +! exterior_lights_watts_b = 2994.5 +! wcc_economizer = DifferentialDryBulb +! skip_economizer_control = No +! cc_sa_humidity = 0.007 +! DX_damper_sch = MinOA_MotorizedDamper_Sched +! wcc_damper_sch = MinOA_MotorizedDamper_Sched +! OA_classroom = 0.00238745 +! OA_corridor = 0.000304781 +! OA_lobby = 0.000304781 +! OA_computer_room = 0.00238745 +! OA_mechanical = 0 +! OA_bath = 0 +! OA_office = 0.000431773 +! OA_gym = 0.001523905 +! OA_aux_gym = 0.001523905 +! OA_kitchen = 0.001178183 +! OA_cafeteria = 0.004724104 +! OA_auditorium = 0.004114542 +! OA_library = 0.000863546 +! auditorium_OA_per_area = 0.000304781 +! auditorium_OA_per_person = 0.002359604 +! classroom_OA_per_area = 0.000609562 +! classroom_OA_per_person = 0.004719207 +! cafeteria_OA_per_area = 0.000914343 +! cafeteria_OA_per_person = 0.003539405 +! PSZ_AC_5_9_DCV = Yes +! PSZ_AC_3_7_DCV = Yes +! PSZ_AC_1_5_DCV = Yes +! PSZ_AC_2_6_DCV = Yes +! VAV_POD_1_DCV = Yes +! VAV_POD_2_DCV = Yes +! VAV_POD_3_DCV = Yes +! chilledwater_pump_head = 44761.27683 +! chilledwater_pump_secondary_head = 134283.8305 +! Gym_SZ_VAV = No +! Aux_Gym_SZ_VAV = No +! Auditorium_SZ_VAV = No +! Kitchen_SZ_VAV = No +! Cafeteria_SZ_VAV = No +! avg_oa_tempt = 9.95 +! maxdiff_oa_tempt = 23.7 +! infil = 0.00056896 +! SAT_reset_switch = Yes +! SAT_reset_T = 15.6 +! door_infil = 5.114489639 +! frac_ofpk = 0.144 +! VAV_Pod_1_ERV = No +! VAV_Pod_2_ERV = No +! VAV_Pod_3_ERV = No +! PSZ_AC_1_5_ERV = No +! PSZ_AC_2_6_ERV = No +! PSZ_AC_3_7_ERV = No +! PSZ_AC_5_9_ERV = No +! economizer_lockout = NoLockout +! eco_max_temp_limit = na +! Transfer_Air = all_exhaust +! BLDG_ELEVATORS_LIGHTS_FAN_SCH = ELEV_LIGHT_FAN_SCH_ADD_DF +! BLDG_ELEVATORS_LIGHTS_FAN_POWER = 125 +! frame_width = 0 +! frame_cond = 0 +! frame = Skylight_Frame +! BLDG_EQUIP_SCH = BLDG_EQUIP_SCH_ADV +! addendum_cd = 2016AS +! VAVReheat_flag = yes +! PumpCurve_flag = pump_ride_on_curve +! pv_generator = no +! pv_surface_area = 0 +! STD189_overhang = no +! swh_et = 0.802764687 +! swh_ua = 15.60100579 +! ext_lgt_sch = Exterior_Lgt_ALWAYS_ON +! VAV_OTHER_ERV = No +! mdp_VAVother = 0.4 +! add_ck_vav_other = Yes +! add_ck_vav_pod_1 = Yes +! add_ck_vav_pod_2 = Yes +! add_ck_vav_pod_3 = Yes +! Bathrooms_ZN_1_FLR_1_mdp = 0.2 +! Bathrooms_ZN_1_FLR_2_mdp = 0.2 +! Library_Media_Center_ZN_1_FLR_2_mdp = 0.544613050629622 +! Lobby_ZN_1_FLR_1_mdp = 0.332601058680307 +! Lobby_ZN_1_FLR_2_mdp = 0.2 +! Main_Corridor_ZN_1_FLR_1_mdp = 0.385235269037899 +! Main_Corridor_ZN_1_FLR_2_mdp = 0.226852945177268 +! Mech_ZN_1_FLR_1_mdp = 0.2 +! Mech_ZN_1_FLR_2_mdp = 0.2 +! Offices_ZN_1_FLR_1_mdp = 0.344594638667384 +! Offices_ZN_1_FLR_2_mdp = 0.223877090571467 +! Corner_Class_1_Pod_1_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_1_Pod_1_ZN_1_FLR_2_mdp = 0.7 +! Corner_Class_2_Pod_1_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_2_Pod_1_ZN_1_FLR_2_mdp = 0.7 +! Corridor_Pod_1_ZN_1_FLR_1_mdp = 0.227868274105745 +! Corridor_Pod_1_ZN_1_FLR_2_mdp = 0.2 +! Mult_Class_1_Pod_1_ZN_1_FLR_1_mdp = 0.950338807664063 +! Mult_Class_1_Pod_1_ZN_1_FLR_2_mdp = 0.7 +! Mult_Class_2_Pod_1_ZN_1_FLR_1_mdp = 1 +! Mult_Class_2_Pod_1_ZN_1_FLR_2_mdp = 0.810321763508802 +! Corner_Class_1_Pod_2_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_1_Pod_2_ZN_1_FLR_2_mdp = 0.7 +! Corner_Class_2_Pod_2_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_2_Pod_2_ZN_1_FLR_2_mdp = 0.7 +! Corridor_Pod_2_ZN_1_FLR_1_mdp = 0.229855294478094 +! Corridor_Pod_2_ZN_1_FLR_2_mdp = 0.2 +! Mult_Class_1_Pod_2_ZN_1_FLR_1_mdp = 0.992314596167755 +! Mult_Class_1_Pod_2_ZN_1_FLR_2_mdp = 0.7 +! Mult_Class_2_Pod_2_ZN_1_FLR_1_mdp = 1 +! Mult_Class_2_Pod_2_ZN_1_FLR_2_mdp = 0.808148116608476 +! Corner_Class_1_Pod_3_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_1_Pod_3_ZN_1_FLR_2_mdp = 0.7 +! Corner_Class_2_Pod_3_ZN_1_FLR_1_mdp = 0.7 +! Corner_Class_2_Pod_3_ZN_1_FLR_2_mdp = 0.7 +! Corridor_Pod_3_ZN_1_FLR_1_mdp = 0.227294180697604 +! Corridor_Pod_3_ZN_1_FLR_2_mdp = 0.2 +! Mult_Class_1_Pod_3_ZN_1_FLR_1_mdp = 0.982530812567157 +! Mult_Class_1_Pod_3_ZN_1_FLR_2_mdp = 0.7 +! Mult_Class_2_Pod_3_ZN_1_FLR_1_mdp = 1 +! Mult_Class_2_Pod_3_ZN_1_FLR_2_mdp = 0.7 +! vav_other_oaf = 3.34614666666667 +! vav_pod_1_oaf = 8.28963 +! vav_pod_2_oaf = 8.24508 +! vav_pod_3_oaf = 9.49289966666667 +! heating_damper_act = REVERSE +! LTG_SCH_SET = LTG_SET_STD2013 +! transformer_size = 225000 +! transformer_eff = 0.989 +! VAV_Pod_1_ERV_power = 5997.809525 +! VAV_Pod_2_ERV_power = 5965.8449 +! VAV_Pod_3_ERV_power = 6861.15551083334 +! PSZ_AC_1_5_ERV_power = 2210.5647 +! PSZ_AC_2_6_ERV_power = 1414.563025 +! PSZ_AC_3_7_ERV_power = 2966.759475 +! PSZ_AC_5_9_ERV_power = 2165.0752 +! VAV_OTHER_ERV_power = 2450.86023333334 +! freezer_power = 915 +! refrigerator_power = 570 +! HtgSetP_Sch = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch = CLGSETP_SCH_YES_OPTIMUM +! OA_BASED_OPTIMUM_START_EMS = yes +! OPTIMUM_START_SF_DEPENDENT_EMS = no +! wwr = 0.35 +! swh_et_booster = 1 +! swh_ua_booster = 1.591045154 +! pipe_heat_loss = 1205.08 +! evap_fan_power_case1 = 19.51428571 +! evap_fan_power_case2 = 15.71428571 +! walkin_lighting_sch = walkin_occ_lght_sch +! fan_total_eff = 0.385 +! kitchen_exh_fan_power = 914 +! skip_EMSprogram = no +! BoilerAM = Yes +! HtgSetP_Sch_PSZ_AC_5_9 = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch_PSZ_AC_5_9 = CLGSETP_SCH_YES_OPTIMUM +! HtgSetP_Sch_PSZ_AC_4_8 = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch_PSZ_AC_4_8 = CLGSETP_SCH_YES_OPTIMUM +! HtgSetP_Sch_PSZ_AC_3_7 = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch_PSZ_AC_3_7 = CLGSETP_SCH_YES_OPTIMUM +! HtgSetP_Sch_PSZ_AC_2_6 = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch_PSZ_AC_2_6 = CLGSETP_SCH_YES_OPTIMUM +! HtgSetP_Sch_PSZ_AC_1_5 = HTGSETP_SCH_YES_OPTIMUM +! ClgSetP_Sch_PSZ_AC_1_5 = CLGSETP_SCH_YES_OPTIMUM +! Wfile_TMY3 = USA_CO_Denver-Aurora-Buckley.AFB.724695_TMY3.epw +! loadProfile = No +! receptacle_ctrl_occ_reduction_frac = 0.951231605 +! receptacle_ctrl_unocc_reduction_frac = 0.844639049 +! HOTW_ST_Reset = No +! CHW_ST_Reset = No +! SHW_Pump_Head = 34026 +! CodeName = ASHRAE90.1_STD2016 +! CZ_City_Old = Boise +! CZ_Label = 5B +! exterior_lights_watts_c = 2973.7 +! Addendum_AH = Yes +! LPD_Ctrl = 0.02 +! con_swingdoor_r = 0.475963827 +! CHW_deltaT = 8.33 +! HOTW_PumpCurve_flag = pump_ride_on_curve + + Version,9.6; + +!- =========== ALL OBJECTS IN CLASS: SIMULATIONCONTROL =========== + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + Yes, !- 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, + Secondary School, !- Name + 0.0000, !- North Axis {deg} + City, !- Terrain + 0.0400, !- Loads Convergence Tolerance Value {W} + 0.2000, !- Temperature Convergence Tolerance Value {deltaC} + FullInteriorAndExterior, !- Solar Distribution + 25, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + +!- =========== ALL OBJECTS IN CLASS: SHADOWCALCULATION =========== + + ShadowCalculation, + PolygonClipping, !- Shading Calculation Method + Periodic, !- Shading Calculation Update Frequency Method + 30, !- Shading Calculation Update Frequency + 15000; !- Maximum Figures in Shadow Overlap Calculations + +!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:INSIDE =========== + + SurfaceConvectionAlgorithm:Inside,TARP; + +!- =========== ALL OBJECTS IN CLASS: SURFACECONVECTIONALGORITHM:OUTSIDE =========== + + SurfaceConvectionAlgorithm:Outside,TARP; + +!- =========== ALL OBJECTS IN CLASS: HEATBALANCEALGORITHM =========== + + HeatBalanceAlgorithm,ConductionTransferFunction,200.0000; + +!- =========== ALL OBJECTS IN CLASS: TIMESTEP =========== + + Timestep,6; + +!- =========== ALL OBJECTS IN CLASS: CONVERGENCELIMITS =========== + + ConvergenceLimits, + 1, !- Minimum System Timestep {minutes} + 20; !- Maximum HVAC Iterations + +!- =========== ALL OBJECTS IN CLASS: PERFORMANCEPRECISIONTRADEOFFS =========== + + PerformancePrecisionTradeoffs, + Yes, !- Use Coil Direct Solutions + ScriptF, !- Zone Radiant Exchange Algorithm + Mode08, !- Override Mode + , !- MaxZoneTempDiff + , !- MaxAllowedDelTemp + Yes; !- Use Representative Surfaces for Calculations + +!- =========== ALL OBJECTS IN CLASS: SITE:LOCATION =========== +! Site:Location and design-day objects created by: +! /projects/bigsim/bin/ddy2idf /projects/bigsim/weather/EnergyPlus/tmy3.new/all/USA_CO_Denver-Aurora-Buckley.AFB.724695_TMY3.ddy +! + + Site:Location, + Denver-Aurora-Buckley.AFB_CO_USA WMO=724695, !- Name + 39.72, !- Latitude {deg} + -104.75, !- Longitude {deg} + -7.00, !- Time Zone {hr} + 1726.00; !- Elevation {m} + + SizingPeriod:DesignDay, + Denver-Aurora-Buckley.AFB_CO_USA Ann Htg 99.6% Condns DB, !- Name + 12, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.9, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.9, !- 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} + 82237., !- Barometric Pressure {Pa} + 2.5, !- Wind Speed {m/s} + 180, !- 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.00; !- Sky Clearness + + SizingPeriod:DesignDay, + Denver-Aurora-Buckley.AFB_CO_USA Ann Clg .4% Condns DB=>MWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 33.9, !- Maximum Dry-Bulb Temperature {C} + 14.8, !- Daily Dry-Bulb Temperature Range {deltaC} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 15, !- 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} + 82237., !- Barometric Pressure {Pa} + 3.6, !- Wind Speed {m/s} + 30, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + +!- =========== ALL OBJECTS IN CLASS: RUNPERIOD =========== + + RunPeriod, + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 12, !- End Month + 31, !- End Day of Month + , !- End Year + Sunday, !- 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 + ; !- Treat Weather as Actual + +!- =========== ALL OBJECTS IN CLASS: RUNPERIODCONTROL:SPECIALDAYS =========== +! US National Holidays + + RunPeriodControl:SpecialDays, + New Years Day, !- Name + January 1, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Veterans Day, !- Name + November 11, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Christmas, !- Name + December 25, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Independence Day, !- Name + July 4, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + MLK Day, !- Name + 3rd Monday in January, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Presidents Day, !- Name + 3rd Monday in February, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Memorial Day, !- Name + Last Monday in May, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Labor Day, !- Name + 1st Monday in September, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Columbus Day, !- Name + 2nd Monday in October, !- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + + RunPeriodControl:SpecialDays, + Thanksgiving, !- Name + 4th Thursday in November,!- Start Date + 1, !- Duration {days} + Holiday; !- Special Day Type + +!- =========== ALL OBJECTS IN CLASS: RUNPERIODCONTROL:DAYLIGHTSAVINGTIME =========== +! Daylight Saving Period in US + + RunPeriodControl:DaylightSavingTime, + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +!- =========== ALL OBJECTS IN CLASS: SITE:GROUNDTEMPERATURE:BUILDINGSURFACE =========== +! +! Ground temperature object produced by /projects/bigsim/bin/gt2idf /projects/bigsim/comstd/_p.gtp/_p.gtp_copy_from_local/slab/output/Zone5B_nonres_R15_2ftV_SchoolSecondary_Denver_STD2016.gtp + + Site:GroundTemperature:BuildingSurface,20.76,20.73,20.73,20.73,20.77,23.02,23.36,23.44,23.48,21.21,20.91,20.82; + +!- =========== ALL OBJECTS IN CLASS: SITE:WATERMAINSTEMPERATURE =========== + + Site:WaterMainsTemperature, + CORRELATION, !- Calculation Method + , !- Temperature Schedule Name + 9.95, !- Annual Average Outdoor Air Temperature {C} + 23.7; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR-R =========== + + Material:NoMass, + Opaque Door panel_con, !- Name + MediumRough, !- Roughness + 0.475963827, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== + + Construction, + Swinging Door_con, !- Name + Opaque Door panel_con; !- Outside Layer + +! ------------------------------------------------------------------ +! $Id: OpaqueLibraryScript_v30.idf,v 1.5 2010/10/21 19:30:30 atha577 Exp $ +! $Log: OpaqueLibraryScript_v30.idf,v $ +! Revision 1.5 2010/10/21 19:30:30 atha577 +! Removed bb constructions for skylights. +! +! Revision 1.4 2010/10/16 00:49:56 atha577 +! Minor change to bb code. +! +! Revision 1.3 2010/10/16 00:08:35 atha577 +! Added bb skylight constructions. +! +! Revision 1.2 2010/01/20 21:56:42 d3l143 +! reset R value of semi-heated Roof to 0.001 if the R values goes below 0.001. V4.0 has a 0.001 threshold with it. +! +! Revision 1.1 2010/01/20 21:49:30 d3l143 +! Initial revision +! +! Note: +! January 20, 2010: We experienced a problem in upgrading Warehouse from V3.0 to V4.0. +! The R value of the semiheated roof goes to around 0.0002 for Miami and Ryihad which V4.0 compliants that it is below 0.001. +! This was not a problem for V3.0. Here we implemented a temporal solution to re-set the r value to 0.001 when it is below it. +! ------------------------------------------------------------------ +! +!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR =========== + + Material, + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540.0000, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.7000000; !- Visible Absorptance + + Material, + AC02 Acoustic Ceiling, !- Name + MediumSmooth, !- Roughness + 1.2700000E-02, !- Thickness {m} + 5.7000000E-02, !- Conductivity {W/m-K} + 288.0000, !- Density {kg/m3} + 1339.000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.7000000, !- Solar Absorptance + 0.2000000; !- Visible Absorptance + + Material, + F07 25mm stucco, !- Name + Smooth, !- Roughness + 0.0254, !- Thickness {m} + 0.72, !- Conductivity {W/m-K} + 1856, !- Density {kg/m3} + 840, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + Material, + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.28, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500; !- Specific Heat {J/kg-K} + + Material, + F08 Metal roof surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.28, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.77; !- Solar Absorptance + + Material, + F12 Asphalt shingles, !- Name + VeryRough, !- Roughness + 0.0032, !- Thickness {m} + 0.04, !- Conductivity {W/m-K} + 1120, !- Density {kg/m3} + 1260, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.77; !- Solar Absorptance + + Material, + F13 Built-up roofing, !- Name + Rough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1120, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.77; !- Solar Absorptance + + Material, + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.1600, !- Conductivity {W/m-K} + 800.0000, !- Density {kg/m3} + 1090.0000, !- Specific Heat {J/kg-K} + 0.9000, !- Thermal Absorptance + 0.7000, !- Solar Absorptance + 0.5000; !- Visible Absorptance + + Material, + G01 16mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.0159, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090; !- Specific Heat {J/kg-K} + + Material, + G02 16mm plywood, !- Name + Smooth, !- Roughness + 0.0159, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 544, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} + + Material, + M14 150mm heavyweight concrete roof, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 100mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 200mm Normalweight concrete wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 100mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 150mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + 200mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2322, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + M10 200mm concrete block wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 0.72, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 832; !- Specific Heat {J/kg-K} + + Material, + M10 200mm concrete block basement wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1842, !- Density {kg/m3} + 912; !- Specific Heat {J/kg-K} + +!- =========== ALL OBJECTS IN CLASS: MATERIAL:REGULAR-R =========== +! Name +! Roughness +! Thermal Resistance +! Absorptance:Thermal -- +! Absorptance:Solar + + Material:NoMass, + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.21648, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + + Material:NoMass, + Air_Wall_Material, !- Name + Rough, !- Roughness + 0.2079491, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7; !- Solar Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Nonres_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 5.30668495131472, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Res_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Semiheated_Roof_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Nonres_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 2.81828208913367, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Res_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Semiheated_Exterior_Wall_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Nonres_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Res_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + + !- Thermal Resistance {m2-K/W} + + Material:NoMass, + Semiheated_Floor_Insulation, !- Name + MediumSmooth, !- Roughness + 0.0299387330245182, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +!- Door material properties taken from DOE Benchmark files released in Nov. 2008 + + Material:NoMass, + Std Opaque Door Panel, !- Name + MediumRough, !- Roughness + 0.123456790123457, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== + + Construction, + InteriorFurnishings, !- Name + Std Wood 6inch; !- Outside Layer + + Construction, + Air_Wall, !- Name + Air_Wall_Material; !- Outside Layer + + Construction, + DropCeiling, !- Name + AC02 Acoustic Ceiling; !- Outside Layer + + Construction, + OpaqueDoor, !- Name + Std Opaque Door Panel; !- Outside Layer + + Construction, + AtticRoofDeck, !- Name + F12 Asphalt shingles, !- Outside Layer + G02 16mm plywood; !- Layer 2 + + Construction, + int_wall, !- Name + G01 13mm gypsum board, !- Outside Layer + G01 13mm gypsum board; !- Layer 2 + + Construction, + ext_slab_8in_with_carpet,!- Name + 200mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + ext_slab_8in, !- Name + 200mm Normalweight concrete floor; !- Outside Layer + + Construction, + ext_slab_6in_with_carpet,!- Name + 150mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + ext_slab_6in, !- Name + 150mm Normalweight concrete floor; !- Outside Layer + + Construction, + int_slab_floor, !- Name + 100mm Normalweight concrete floor, !- Outside Layer + CP02 CARPET PAD; !- Layer 2 + + Construction, + int_slab_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor; !- Layer 2 + + Construction, + basement_wall, !- Name + M10 200mm concrete block basement wall; !- Outside Layer + + Construction, + int_wood_floor, !- Name + AC02 Acoustic Ceiling, !- Outside Layer + G02 16mm plywood, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + ext_soffit_floor, !- Name + G02 16mm plywood; !- Outside Layer + + Construction, + nonres_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Nonres_Roof_Insulation, !- Layer 2 + F08 Metal surface; !- Layer 3 + + Construction, + res_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Res_Roof_Insulation, !- Layer 2 + F08 Metal surface; !- Layer 3 + + Construction, + semiheated_roof, !- Name + F13 Built-up roofing, !- Outside Layer + Semiheated_Roof_Insulation, !- Layer 2 + F08 Metal surface; !- Layer 3 + + Construction, + nonres_ext_wall, !- Name + F07 25mm stucco, !- Outside Layer + G01 16mm gypsum board, !- Layer 2 + Nonres_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + + Construction, + res_ext_wall, !- Name + F07 25mm stucco, !- Outside Layer + G01 16mm gypsum board, !- Layer 2 + Res_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + + Construction, + semiheated_ext_wall, !- Name + F07 25mm stucco, !- Outside Layer + G01 16mm gypsum board, !- Layer 2 + Semiheated_Exterior_Wall_Insulation, !- Layer 3 + G01 16mm gypsum board; !- Layer 4 + + Construction, + nonres_floor, !- Name + Nonres_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + res_floor, !- Name + Res_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + semiheated_floor, !- Name + Semiheated_Floor_Insulation, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + CP02 CARPET PAD; !- Layer 3 + + Construction, + nonres_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Nonres_Floor_Insulation; !- Layer 3 + + Construction, + res_floor_ceiling, !- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Res_Floor_Insulation; !- Layer 3 + + Construction, + semiheated_floor_ceiling,!- Name + CP02 CARPET PAD, !- Outside Layer + 100mm Normalweight concrete floor, !- Layer 2 + Semiheated_Floor_Insulation; !- Layer 3 + +! ------------------------------------------------------------------ +! $Id: WindowsLibrary_v30.idf,v 1.6 2010/10/16 00:03:25 atha577 Exp $ +! $Log: WindowsLibrary_v30.idf,v $ +! Revision 1.6 2010/10/16 00:03:25 atha577 +! Deleted bb skylight constructions. Added them to opaquelibraryscript. +! +! Revision 1.6 2015/03/02 atha577 +! Added skylight constructions for IECC 2015 and 2012. +! +! Revision 1.5 2010/10/15 23:31:07 atha577 +! Added addendum bb skylight constructions. +! +! Revision 1.4 2010/10/14 22:53:47 atha577 +! Added new skylight constructions for bb +! +! Revision 1.3 2010/05/19 20:10:16 atha577 +! *** empty log message *** +! +! Revision 1.2 2010/05/19 20:08:49 atha577 +! added bb constructions. +! +! +! Revision 1.1 2010/01/20 21:58:41 d3l143 +! Initial revision +! Revised 5/19/2010: Added new constructions for bb from E+ window +! construction library +! +! Revised 1-7-2016. atha577 +! Added constructions for 90.1-2016 Fenestration Orientation +! +! +! ------------------------------------------------------------------ +! +!- =========== ALL OBJECTS IN CLASS: MATERIAL:WINDOWGLASS =========== + + WindowMaterial:Glazing, + GREEN 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.487, !- Solar Transmittance at Normal Incidence + 0.056, !- Front Side Solar Reflectance at Normal Incidence + 0.056, !- Back Side Solar Reflectance at Normal Incidence + 0.749, !- Visible Transmittance at Normal Incidence + 0.070, !- Front Side Visible Reflectance at Normal Incidence + 0.070, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + +! ID 221 + + WindowMaterial:Glazing, + REF B CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.240, !- Solar Transmittance at Normal Incidence + 0.160, !- Front Side Solar Reflectance at Normal Incidence + 0.320, !- Back Side Solar Reflectance at Normal Incidence + 0.300, !- Visible Transmittance at Normal Incidence + 0.160, !- Front Side Visible Reflectance at Normal Incidence + 0.290, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.60, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF C CLEAR HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.200, !- Solar Transmittance at Normal Incidence + 0.160, !- Front Side Solar Reflectance at Normal Incidence + 0.390, !- Back Side Solar Reflectance at Normal Incidence + 0.220, !- Visible Transmittance at Normal Incidence + 0.170, !- Front Side Visible Reflectance at Normal Incidence + 0.350, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.55, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + ECREF-1 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.099, !- Solar Transmittance at Normal Incidence + 0.219, !- Front Side Solar Reflectance at Normal Incidence + 0.219, !- Back Side Solar Reflectance at Normal Incidence + 0.155, !- Visible Transmittance at Normal Incidence + 0.073, !- Front Side Visible Reflectance at Normal Incidence + 0.073, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF B TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.100, !- Solar Transmittance at Normal Incidence + 0.110, !- Front Side Solar Reflectance at Normal Incidence + 0.410, !- Back Side Solar Reflectance at Normal Incidence + 0.130, !- Visible Transmittance at Normal Incidence + 0.100, !- Front Side Visible Reflectance at Normal Incidence + 0.320, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.45, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.775, !- Solar Transmittance at Normal Incidence + 0.071, !- Front Side Solar Reflectance at Normal Incidence + 0.071, !- Back Side Solar Reflectance at Normal Incidence + 0.881, !- Visible Transmittance at Normal Incidence + 0.080, !- Front Side Visible Reflectance at Normal Incidence + 0.080, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF D CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.429, !- Solar Transmittance at Normal Incidence + 0.308, !- Front Side Solar Reflectance at Normal Incidence + 0.379, !- Back Side Solar Reflectance at Normal Incidence + 0.334, !- Visible Transmittance at Normal Incidence + 0.453, !- Front Side Visible Reflectance at Normal Incidence + 0.505, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.82, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + BLUE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.480, !- Solar Transmittance at Normal Incidence + 0.050, !- Front Side Solar Reflectance at Normal Incidence + 0.050, !- Back Side Solar Reflectance at Normal Incidence + 0.570, !- Visible Transmittance at Normal Incidence + 0.060, !- Front Side Visible Reflectance at Normal Incidence + 0.060, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREY 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.455, !- Solar Transmittance at Normal Incidence + 0.053, !- Front Side Solar Reflectance at Normal Incidence + 0.053, !- Back Side Solar Reflectance at Normal Incidence + 0.431, !- Visible Transmittance at Normal Incidence + 0.052, !- Front Side Visible Reflectance at Normal Incidence + 0.052, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + LoE CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006, !- Thickness {m} + 0.600, !- Solar Transmittance at Normal Incidence + 0.170, !- Front Side Solar Reflectance at Normal Incidence + 0.220, !- Back Side Solar Reflectance at Normal Incidence + 0.840, !- Visible Transmittance at Normal Incidence + 0.055, !- Front Side Visible Reflectance at Normal Incidence + 0.078, !- Back Side Visible Reflectance at Normal Incidence + 0.0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.10, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREY 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .626, !- Solar Transmittance at Normal Incidence + .061, !- Front Side Solar Reflectance at Normal Incidence + .061, !- Back Side Solar Reflectance at Normal Incidence + .611, !- Visible Transmittance at Normal Incidence + .061, !- Front Side Visible Reflectance at Normal Incidence + .061, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + LoE TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .360, !- Solar Transmittance at Normal Incidence + .093, !- Front Side Solar Reflectance at Normal Incidence + .200, !- Back Side Solar Reflectance at Normal Incidence + .500, !- Visible Transmittance at Normal Incidence + .035, !- Front Side Visible Reflectance at Normal Incidence + .054, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF B TINT HI 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .150, !- Solar Transmittance at Normal Incidence + .090, !- Front Side Solar Reflectance at Normal Incidence + .330, !- Back Side Solar Reflectance at Normal Incidence + .180, !- Visible Transmittance at Normal Incidence + .080, !- Front Side Visible Reflectance at Normal Incidence + .280, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .60, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF C CLEAR MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .170, !- Solar Transmittance at Normal Incidence + .200, !- Front Side Solar Reflectance at Normal Incidence + .420, !- Back Side Solar Reflectance at Normal Incidence + .190, !- Visible Transmittance at Normal Incidence + .210, !- Front Side Visible Reflectance at Normal Incidence + .380, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .51, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF D TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .300, !- Solar Transmittance at Normal Incidence + .140, !- Front Side Solar Reflectance at Normal Incidence + .360, !- Back Side Solar Reflectance at Normal Incidence + .250, !- Visible Transmittance at Normal Incidence + .180, !- Front Side Visible Reflectance at Normal Incidence + .450, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .82, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + COATED POLY-77, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .00051, !- Thickness {m} + .504, !- Solar Transmittance at Normal Incidence + .402, !- Front Side Solar Reflectance at Normal Incidence + .398, !- Back Side Solar Reflectance at Normal Incidence + .766, !- Visible Transmittance at Normal Incidence + .147, !- Front Side Visible Reflectance at Normal Incidence + .167, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .075, !- Front Side Infrared Hemispherical Emissivity + .720, !- Back Side Infrared Hemispherical Emissivity + .14; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + LoE SPEC SEL TINT 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .260, !- Solar Transmittance at Normal Incidence + .140, !- Front Side Solar Reflectance at Normal Incidence + .410, !- Back Side Solar Reflectance at Normal Incidence + .460, !- Visible Transmittance at Normal Incidence + .060, !- Front Side Visible Reflectance at Normal Incidence + .040, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .03, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + PYR B CLEAR 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .680, !- Solar Transmittance at Normal Incidence + .090, !- Front Side Solar Reflectance at Normal Incidence + .100, !- Back Side Solar Reflectance at Normal Incidence + .810, !- Visible Transmittance at Normal Incidence + .110, !- Front Side Visible Reflectance at Normal Incidence + .120, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .20, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .837, !- Solar Transmittance at Normal Incidence + .075, !- Front Side Solar Reflectance at Normal Incidence + .075, !- Back Side Solar Reflectance at Normal Incidence + .898, !- Visible Transmittance at Normal Incidence + .081, !- Front Side Visible Reflectance at Normal Incidence + .081, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF B CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .150, !- Solar Transmittance at Normal Incidence + .220, !- Front Side Solar Reflectance at Normal Incidence + .380, !- Back Side Solar Reflectance at Normal Incidence + .200, !- Visible Transmittance at Normal Incidence + .230, !- Front Side Visible Reflectance at Normal Incidence + .330, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .58, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF A CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .066, !- Solar Transmittance at Normal Incidence + .341, !- Front Side Solar Reflectance at Normal Incidence + .493, !- Back Side Solar Reflectance at Normal Incidence + .080, !- Visible Transmittance at Normal Incidence + .410, !- Front Side Visible Reflectance at Normal Incidence + .370, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .40, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + GREEN 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .635, !- Solar Transmittance at Normal Incidence + .063, !- Front Side Solar Reflectance at Normal Incidence + .063, !- Back Side Solar Reflectance at Normal Incidence + .822, !- Visible Transmittance at Normal Incidence + .075, !- Front Side Visible Reflectance at Normal Incidence + .075, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + ECABS-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .111, !- Solar Transmittance at Normal Incidence + .179, !- Front Side Solar Reflectance at Normal Incidence + .179, !- Back Side Solar Reflectance at Normal Incidence + .128, !- Visible Transmittance at Normal Incidence + .081, !- Front Side Visible Reflectance at Normal Incidence + .081, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + COATED POLY-55, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .00051, !- Thickness {m} + .320, !- Solar Transmittance at Normal Incidence + .582, !- Front Side Solar Reflectance at Normal Incidence + .593, !- Back Side Solar Reflectance at Normal Incidence + .551, !- Visible Transmittance at Normal Incidence + .336, !- Front Side Visible Reflectance at Normal Incidence + .375, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .046, !- Front Side Infrared Hemispherical Emissivity + .720, !- Back Side Infrared Hemispherical Emissivity + .14; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + ECREF-2 COLORED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .099, !- Solar Transmittance at Normal Incidence + .219, !- Front Side Solar Reflectance at Normal Incidence + .219, !- Back Side Solar Reflectance at Normal Incidence + .155, !- Visible Transmittance at Normal Incidence + .073, !- Front Side Visible Reflectance at Normal Incidence + .073, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 6MM Rev, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .430, !- Solar Transmittance at Normal Incidence + .420, !- Front Side Solar Reflectance at Normal Incidence + .300, !- Back Side Solar Reflectance at Normal Incidence + .770, !- Visible Transmittance at Normal Incidence + .060, !- Front Side Visible Reflectance at Normal Incidence + .070, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .03, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + BRONZE 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .482, !- Solar Transmittance at Normal Incidence + .054, !- Front Side Solar Reflectance at Normal Incidence + .054, !- Back Side Solar Reflectance at Normal Incidence + .534, !- Visible Transmittance at Normal Incidence + .057, !- Front Side Visible Reflectance at Normal Incidence + .057, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .84, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + REF A TINT MID 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .060, !- Solar Transmittance at Normal Incidence + .130, !- Front Side Solar Reflectance at Normal Incidence + .420, !- Back Side Solar Reflectance at Normal Incidence + .090, !- Visible Transmittance at Normal Incidence + .140, !- Front Side Visible Reflectance at Normal Incidence + .350, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .47, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Theoretical Glass 297, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.375039, !- Solar Transmittance at Normal Incidence + 0.574961, !- Front Side Solar Reflectance at Normal Incidence + 0.574961, !- Back Side Solar Reflectance at Normal Incidence + 0.529698, !- Visible Transmittance at Normal Incidence + 0.420302, !- Front Side Visible Reflectance at Normal Incidence + 0.420302, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.0103561; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Theoretical Glass 347, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003, !- Thickness {m} + 0.315861, !- Solar Transmittance at Normal Incidence + 0.634139, !- Front Side Solar Reflectance at Normal Incidence + 0.634139, !- Back Side Solar Reflectance at Normal Incidence + 0.479911, !- Visible Transmittance at Normal Incidence + 0.470089, !- Front Side Visible Reflectance at Normal Incidence + 0.470089, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.9, !- Front Side Infrared Hemispherical Emissivity + 0.9, !- Back Side Infrared Hemispherical Emissivity + 0.010358; !- Conductivity {W/m-K} + +! +! Next two glazing layers are from IGDB double glazing database from Charlie Curcija (LBNL). +! The first layer is ID 3600, Neutral34gn5.grm. Followed by clear 3 mm glass. +! This double glazing has been added for 90.1-2016 to meet the sit-down restaurant +! SHGC requirement. Layers are used in construction Window_U_0.45_SHGC_0.27 +! + + WindowMaterial:Glazing, + Glass_12116_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.004750, !- Thickness {m} + 0.171874, !- Solar Transmittance at Normal Incidence + 1.094601e-001, !- Front Side Solar Reflectance at Normal Incidence + 2.199938e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.322771, !- Visible Transmittance at Normal Incidence + 0.182598, !- Front Side Visible Reflectance at Normal Incidence + 0.081654, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.538265, !- Back Side Infrared Hemispherical Emissivity + 1.000345; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_102_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003048, !- Thickness {m} + 0.833848, !- Solar Transmittance at Normal Incidence + 7.476376e-002, !- Front Side Solar Reflectance at Normal Incidence + 7.485449e-002, !- Back Side Solar Reflectance at Normal Incidence + 0.899260, !- Visible Transmittance at Normal Incidence + 0.082563, !- Front Side Visible Reflectance at Normal Incidence + 0.082564, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1.000000; !- Conductivity {W/m-K} + +!- =========== ALL OBJECTS IN CLASS: MATERIAL:WINDOWGAS =========== + + WindowMaterial:Gas, + AIR 6MM, !- Name + Air, !- Gas Type + 0.0063; !- Thickness {m} + + WindowMaterial:Gas, + AIR 13MM, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + + WindowMaterial:Gas, + ARGON 13MM, !- Name + Argon, !- Gas Type + 0.0127; !- Thickness {m} + +!- =========== ALL OBJECTS IN CLASS: CONSTRUCTION =========== +! Sgl Green 6mm, !- Name + + Construction, + Window_U_1.22_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_1.22_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-C-H Clr 6mm, !- Name + + Construction, + Window_U_1.22_SHGC_0.34, !- Name + REF C CLEAR HI 6MM; !- Outside Layer + +! Sgl Elec Ref Colored 6mm,!- Name + + Construction, + Window_U_1.22_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +! Sgl Ref-B-M Tint 6mm, !- Name + + Construction, + Window_U_0.72_SHGC_0.25, !- Name + REF B TINT MID 6MM; !- Outside Layer + +! Dbl Ref-D Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.62_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.57_SHGC_0.39, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-C-H Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.65_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-C-H Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.62_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-C-H Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.57_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Blue 6mm/6mm Air, !- Name + + Construction, + Window_U_0.62_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Blue 6mm/6mm Air, !- Name + + Construction, + Window_U_0.57_SHGC_0.49, !- Name + BLUE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.52_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.48_SHGC_0.40, !- Name + REF D CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Clr 6mm/13mm Arg, !- Name + + Construction, + Window_U_0.42_SHGC_0.45, !- Name + REF D CLEAR 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Grey 6mm/13mm Air, !- Name + + Construction, + Window_U_0.46_SHGC_0.45, !- Name + GREY 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.42_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-B-H Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.43_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-B-H Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.44_SHGC_0.26, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.42_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/13mm Air, !- Name + + Construction, + Window_U_0.33_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + + Construction, + Window_U_0.34_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/13mm Air, !- Name + + Construction, + Window_U_0.35_SHGC_0.35, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.55_SHGC_0.31, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE Spec Sel Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.43_SHGC_0.29, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.2) Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.34_SHGC_0.45, !- Name + PYR B CLEAR 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-D Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.56_SHGC_0.35, !- Name + REF D TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-B-H Clr 6mm/13mm Air, !- Name (0.44/0.30) + + Construction, + Window_U_0.45_SHGC_0.31, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Trp LoE Film (77) Clr 3mm/6mm Air, !- Name (0.31/0.46) + + Construction, + Window_U_0.33_SHGC_0.45, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-77, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 3MM; !- Layer 5 + +! Dbl Ref B-H Tint 6mm/13mm Arg, ! U=2.297 SC= .27 SHGC=.236 TSOL=.119 TVIS=.163 + + Construction, + Window_U_0.38_SHGC_0.26, !- Name + REF B TINT HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/13mm Arg, ! U=1.502 SC= .43 SHGC=.371 TSOL=.284 TVIS=.444 + + Construction, + Window_U_0.25_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-C-M Clr 6mm/13mm Arg, ! U=2.184 SC= .27 SHGC=.233 TSOL=.136 TVIS=.173 + + Construction, + Window_U_0.35_SHGC_0.26, !- Name + REF C CLEAR MID 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-C-H Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.54_SHGC_0.27, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-A-M Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.54_SHGC_0.18, !- Name + REF A TINT MID 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-A-L Clr 6mm/13mm Air, !- Name + + Construction, + Window_U_0.54_SHGC_0.13, !- Name + REF A CLEAR LO 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE Elec Ref Colored 6mm/13mm Air, !- Name + + Construction, + Window_U_0.33_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +! Trp LoE Film (55) Bronze 6mm/6mm Air, !- Name + + Construction, + Window_U_0.29_SHGC_0.22, !- Name + BRONZE 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 6MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +! Dbl Elec Abs Colored 6mm/13mm Air, !- Name + + Construction, + Window_U_0.29_SHGC_0.17, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE Elec Ref Colored 6mm/13mm Air, !- Name + + Construction, + Window_U_0.29_SHGC_0.11, !- Name + ECREF-2 COLORED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +! Dbl LoE Spec Sel Tint 6mm/13mm Arg, !- Name + + Construction, + Window_U_0.24_SHGC_0.23, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Elec Abs Colored 6mm/13mm Arg, !- Name + + Construction, + Window_U_0.24_SHGC_0.16, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE Elec Abs Colored 6mm/13mm Arg, !- Name + + Construction, + Window_U_0.24_SHGC_0.11, !- Name + ECABS-2 COLORED 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +! Trp LoE Film (55) Bronze 6mm/13mm Air, !- Name + + Construction, + Window_U_0.19_SHGC_0.20, !- Name + BRONZE 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + COATED POLY-55, !- Layer 3 + AIR 13MM, !- Layer 4 + CLEAR 6MM; !- Layer 5 + +! +! +! Following constructions are added as part of Addendum bb +! +! +! Dbl Ref-C-H Clr 6mm/6mm Air + + Construction, + Window_U_0.71_SHGC_0.25, !- Name + REF C CLEAR HI 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-B-H Clr 6mm/13mm Arg + + Construction, + Window_U_0.38_SHGC_0.30, !- Name + REF B CLEAR HI 6MM, !- Outside Layer + ARGON 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE Spec Sel Tint 6mm/6mm Air + + Construction, + Window_U_0.36_SHGC_0.35, !- Name + LoE SPEC SEL TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl LoE (e2=.1) Tint 6mm/13mm Air + + Construction, + Window_U_0.30_SHGC_0.40, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! +! +! End set of new bb constructions +! +! +! +! Construction below added for 90.1-2016 Sit-down Restaurant to comply +! with SHGC requirements imposed by fenestration orientation. +! 1-6-16. +! + + CONSTRUCTION, + Window_U_0.45_SHGC_0.27, !- Name + Glass_12116_LayerAvg, !- Outside Layer + Air 13MM, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +! +! End +! +! +! Construction below added for 90.1-2016 Fastfood Restaurant to comply +! with SHGC requirements imposed by fenestration orientation. +! 1-6-16. +! +! Dbl LoE (e2=.1) Tint 6mm/6mm Air, !- Name + + Construction, + Window_U_0.39_SHGC_0.36, !- Name + LoE TINT 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +!=================skylight==================== +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_1.98_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_1.17_SHGC_0.39, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Green 6mm, !- Name + + Construction, + Window_U_1.98_SHGC_0.61, !- Name + GREEN 6MM; !- Outside Layer + +! Sgl Ref-D Clr 6mm, !- Name + + Construction, + Window_U_1.17_SHGC_0.49, !- Name + REF D CLEAR 6MM; !- Outside Layer + +! Sgl Green 3mm, !- Name + + Construction, + Window_U_1.17_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_0.98_SHGC_0.45, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_0.98_SHGC_0.68, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-A-L Clr 6mm, !- Name + + Construction, + Window_U_0.88_SHGC_0.16, !- Name + REF A CLEAR LO 6MM; !- Outside Layer + +! Sgl Elec Ref Colored 6mm,!- Name + + Construction, + Window_U_0.88_SHGC_0.27, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +! Dbl Ref-B-L Clr 6mm/6mm Air, !- Name + + Construction, + Window_U_0.52_SHGC_0.22, !- Name + REF B CLEAR LO 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + +! Dbl Ref-B-H Tint 6mm/13mm Air, !- Name + + Construction, + Window_U_0.44_SHGC_0.20, !- Name + REF B TINT HI 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + + Construction, + Window_U_0.39_SHGC_0.38, !- Name + Theoretical Glass 297; !- Outside Layer + + Construction, + Window_U_0.39_SHGC_0.32, !- Name + Theoretical Glass 347; !- Outside Layer + +!=================Additional Skylight Constructions for 189.1==================== +! Sgl LoE (e2=.2) Clr 6mm, !- Name + + Construction, + Window_U_0.75_SHGC_0.72, !- Name + PYR B CLEAR 6MM; !- Outside Layer + +! Sgl LoE (e2=.2) Clr 3mm, !- Name + + Construction, + Window_U_0.67_SHGC_0.77, !- Name + PYR B CLEAR 3MM; !- Outside Layer + +! Dbl Clr 3mm/6mm Air, !- Name + + Construction, + Window_U_0.56_SHGC_0.76, !- Name + CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + + WindowMaterial:Glazing, + PYR B CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .740, !- Solar Transmittance at Normal Incidence + .090, !- Front Side Solar Reflectance at Normal Incidence + .100, !- Back Side Solar Reflectance at Normal Incidence + .820, !- Visible Transmittance at Normal Incidence + .110, !- Front Side Visible Reflectance at Normal Incidence + .120, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .20, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + +!=================Additional Window Constructions for 189.1==================== +! Dbl LoE Spec Sel Clr 3mm/6mm/6mm Air, !- Name + + Construction, + Window_U_0.40_SHGC_0.43, !- Name + LoE SPEC SEL CLEAR 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 6MM; !- Layer 3 + + WindowMaterial:Glazing, + LoE SPEC SEL CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .450, !- Solar Transmittance at Normal Incidence + .340, !- Front Side Solar Reflectance at Normal Incidence + .370, !- Back Side Solar Reflectance at Normal Incidence + .780, !- Visible Transmittance at Normal Incidence + .070, !- Front Side Visible Reflectance at Normal Incidence + .060, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .03, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + +!=================Additional Window Materials and Constructions for 50% Concept==================== + + WindowMaterial:Glazing, + ECABS-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .814, !- Solar Transmittance at Normal Incidence + .086, !- Front Side Solar Reflectance at Normal Incidence + .086, !- Back Side Solar Reflectance at Normal Incidence + .847, !- Visible Transmittance at Normal Incidence + .099, !- Front Side Visible Reflectance at Normal Incidence + .099, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + +! Dbl LoE Elec Abs Bleached 6mm/6mm Air, !- Name + + Construction, + Window_U_0.40_SHGC_0.45, !- Name + ECABS-2 BLEACHED 6MM, !- Outside Layer + AIR 6MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +! +! The next four constructions are derived from Window 6.3. +! Refer to the scorecard for individual layers' definitions. +! + + WindowMaterial:Glazing, + Glass_2175_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.008600, !- Thickness {m} + 0.167758, !- Solar Transmittance at Normal Incidence + 2.176064e-001, !- Front Side Solar Reflectance at Normal Incidence + 4.379779e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.416044, !- Visible Transmittance at Normal Incidence + 0.078729, !- Front Side Visible Reflectance at Normal Incidence + 0.106540, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2022F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003900, !- Thickness {m} + 0.355897, !- Solar Transmittance at Normal Incidence + 3.940945e-001, !- Front Side Solar Reflectance at Normal Incidence + 2.656452e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.677694, !- Visible Transmittance at Normal Incidence + 0.042734, !- Front Side Visible Reflectance at Normal Incidence + 0.055470, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.046000, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2052_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.008370, !- Thickness {m} + 0.507767, !- Solar Transmittance at Normal Incidence + 5.422805e-002, !- Front Side Solar Reflectance at Normal Incidence + 5.449309e-002, !- Back Side Solar Reflectance at Normal Incidence + 0.586833, !- Visible Transmittance at Normal Incidence + 0.058050, !- Front Side Visible Reflectance at Normal Incidence + 0.058397, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2010F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.002210, !- Thickness {m} + 0.434294, !- Solar Transmittance at Normal Incidence + 4.183747e-001, !- Front Side Solar Reflectance at Normal Incidence + 3.410654e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.797579, !- Visible Transmittance at Normal Incidence + 0.043577, !- Front Side Visible Reflectance at Normal Incidence + 0.056031, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.042274, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2027F_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.004000, !- Thickness {m} + 0.369744, !- Solar Transmittance at Normal Incidence + 4.700695e-001, !- Front Side Solar Reflectance at Normal Incidence + 3.409350e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.765222, !- Visible Transmittance at Normal Incidence + 0.054600, !- Front Side Visible Reflectance at Normal Incidence + 0.073741, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.036750, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 1; !- Conductivity {W/m-K} + + WindowMaterial:Gas, + Gap_1_W_0_0025, !- Name + Air, !- Gas Type + 0.0025; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0032, !- Name + Air, !- Gas Type + 0.0032; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0042, !- Name + Air, !- Gas Type + 0.0042; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0043, !- Name + Air, !- Gas Type + 0.0043; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0018, !- Name + Air, !- Gas Type + 0.0018; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0024, !- Name + Air, !- Gas Type + 0.0024; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0038, !- Name + Air, !- Gas Type + 0.0038; !- Thickness {m} + + Construction, + Window_U_0.60_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0025, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.55_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0032, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.50_SHGC_0.25, !- Name + Glass_2175_LayerAvg, !- Outside Layer + Gap_1_W_0_0042, !- Layer 2 + Glass_2022F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.47_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0043, !- Layer 2 + Glass_2010F_LayerAvg; !- Layer 3 + +!=================Additional Skylight Materials and Constructions for 50% Concept==================== +! +! The next four constructions are derived from Window 6.3. +! Refer to the scorecard for individual layers. +! + + Construction, + Window_U_0.75_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0018, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.65_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0024, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.55_SHGC_0.35, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + + Construction, + Window_U_0.50_SHGC_0.40, !- Name + Glass_2052_LayerAvg, !- Outside Layer + Gap_1_W_0_0038, !- Layer 2 + Glass_2027F_LayerAvg; !- Layer 3 + +!=================Additional Windows for IECC Analysis================================================ +!Sgl Elec Ref Colored 6mm + + Construction, + Window_U_1.16_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +! Sgl Elec Ref Colored 6mm + + Construction, + Window_U_1.08_SHGC_0.25, !- Name + ECREF-1 COLORED 6MM; !- Outside Layer + +! Dbl Elec Ref Bleached 6mm/13mm Air, !- Name + + WindowMaterial:Glazing, + ECREF-2 BLEACHED 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .006, !- Thickness {m} + .694, !- Solar Transmittance at Normal Incidence + .168, !- Front Side Solar Reflectance at Normal Incidence + .168, !- Back Side Solar Reflectance at Normal Incidence + .818, !- Visible Transmittance at Normal Incidence + .110, !- Front Side Visible Reflectance at Normal Incidence + .110, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .10, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + + Construction, + Window_U_0.29_SHGC_0.45, !- Name + ECREF-2 BLEACHED 6MM, !- Outside Layer + AIR 13MM, !- Layer 2 + LoE SPEC SEL CLEAR 6MM Rev; !- Layer 3 + +!=================Additional Skylights for IECC Analysis================================================ +! Using Window_U_0.65_SHGC_0.35 and Window_U_0.75_SHGC_0.35 from 50% concepts. +!Sgl Ref-B-H Clr 6mm, Add frame width and frame conductivity +! Glazing Properties- Assembly U factor = 0.89, SHGC = 0.4. This includes the effect of air films. +! Skylight frame has ben added with the following properties- +! Frame width = 0.7129; Frame conductivity = 283.91 + + Construction, + Window_U_1.60_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-C-H Clr 6mm, Add frame width and frame conductivity +! Glazing Properties- Assembly U factor = 0.89, SHGC = 0.4. This includes the effect of air films. +! Skylight frame has ben added with the following properties- +! Frame width = 0.1271; Frame conductivity = 283.91 + + Construction, + Window_U_1.05_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-C-H Clr 6mm, Add frame width and frame conductivity +! Same construction (Assembly U factor = 0.89, SHGC = 0.4) has been used with frame width = 0. + + Construction, + Window_U_0.90_SHGC_0.40, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! +! Sgl Ref-C-H Clr 6mm. IECC 2015 and IECC 2012 skylight construction +! + + Construction, + Window_U_0.9_SHGC_0.6, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! +! Dbl Grey 3mm/6mm Air. IECC 2015 and IECC 2012 skylight construction +! + + Construction, + Window_U_0.75_SHGC_0.6, !- Name + GREY 3MM, !- Outside Layer + AIR 6MM, !- Layer 2 + CLEAR 3MM; !- Layer 3 + +! +! Constructions added during addendum AI to 90.1-2013 +! +! +! Sgl LoE (e2=.4) Clr 3mm +! + + Construction, + Window_U_0.85_SHGC_0.78, !- Name + PYR A CLEAR 3MM; !- Outside Layer + + WindowMaterial:Glazing, + PYR A CLEAR 3MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + .003, !- Thickness {m} + .750, !- Solar Transmittance at Normal Incidence + .100, !- Front Side Solar Reflectance at Normal Incidence + .100, !- Back Side Solar Reflectance at Normal Incidence + .850, !- Visible Transmittance at Normal Incidence + .120, !- Front Side Visible Reflectance at Normal Incidence + .120, !- Back Side Visible Reflectance at Normal Incidence + .0, !- Infrared Transmittance at Normal Incidence + .84, !- Front Side Infrared Hemispherical Emissivity + .40, !- Back Side Infrared Hemispherical Emissivity + .9; !- Conductivity {W/m-K} + +! Sgl Green 3mm, !- Name + + Construction, + Window_U_1.30_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +! Sgl Green 3mm, !- Name + + Construction, + Window_U_1.15_SHGC_0.68, !- Name + GREEN 3MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_1.80_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +! Sgl Ref-B-H Clr 6mm, !- Name + + Construction, + Window_U_1.70_SHGC_0.36, !- Name + REF B CLEAR HI 6MM; !- Outside Layer + +!-_____________________________________________________________________ +!- Added for Addendum AI to 90.1 2013 +!-_____________________________________________________________________ +!---------------------------------------------------------------------- +! Window Gas Layers +!---------------------------------------------------------------------- + + WindowMaterial:Gas, + Gap_1_W_0_0127, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} + + WindowMaterial:GasMixture, + Gap_9_W_0_0127, !- Name + 0.0127, !- Thickness {m} + 2, !- Number of Gases in Mixture + Air, !- Gas 1 Type + 0.10, !- Gas 1 Fraction + Argon, !- Gas 2 Type + 0.90; !- Gas 2 Fraction + + WindowMaterial:Gas, + Gap_1_W_0_0090, !- Name + Air, !- Gas Type + 0.0090; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0070, !- Name + Air, !- Gas Type + 0.0070; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0060, !- Name + Air, !- Gas Type + 0.0060; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0052, !- Name + Air, !- Gas Type + 0.0052; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0048, !- Name + Air, !- Gas Type + 0.0048; !- Thickness {m} + + WindowMaterial:Gas, + Gap_1_W_0_0046, !- Name + Air, !- Gas Type + 0.0046; !- Thickness {m} + +!----------------------------------------------------- +! Window Glass Layers +!----------------------------------------------------- + + WindowMaterial:Glazing, + Glass_4321_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.006180, !- Thickness {m} + 0.425947, !- Solar Transmittance at Normal Incidence + 7.424190e-002, !- Front Side Solar Reflectance at Normal Incidence + 9.994167e-002, !- Back Side Solar Reflectance at Normal Incidence + 0.559652, !- Visible Transmittance at Normal Incidence + 0.072726, !- Front Side Visible Reflectance at Normal Incidence + 0.094819, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.279000, !- Back Side Infrared Hemispherical Emissivity + 0.814000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_8652_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003059, !- Thickness {m} + 0.343691, !- Solar Transmittance at Normal Incidence + 2.989869e-001, !- Front Side Solar Reflectance at Normal Incidence + 4.621051e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.487937, !- Visible Transmittance at Normal Incidence + 0.209449, !- Front Side Visible Reflectance at Normal Incidence + 0.306829, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.390000, !- Back Side Infrared Hemispherical Emissivity + 0.962000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_282_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003251, !- Thickness {m} + 0.352565, !- Solar Transmittance at Normal Incidence + 2.956174e-001, !- Front Side Solar Reflectance at Normal Incidence + 4.058073e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.510046, !- Visible Transmittance at Normal Incidence + 0.237458, !- Front Side Visible Reflectance at Normal Incidence + 0.270435, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.370000, !- Back Side Infrared Hemispherical Emissivity + 0.940000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2531_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003060, !- Thickness {m} + 0.350556, !- Solar Transmittance at Normal Incidence + 3.198325e-001, !- Front Side Solar Reflectance at Normal Incidence + 3.617666e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.490923, !- Visible Transmittance at Normal Incidence + 0.250840, !- Front Side Visible Reflectance at Normal Incidence + 0.232929, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.454000, !- Back Side Infrared Hemispherical Emissivity + 0.934000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_2532_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003060, !- Thickness {m} + 0.340824, !- Solar Transmittance at Normal Incidence + 2.268281e-001, !- Front Side Solar Reflectance at Normal Incidence + 2.732317e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.543814, !- Visible Transmittance at Normal Incidence + 0.076600, !- Front Side Visible Reflectance at Normal Incidence + 0.079448, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.676000, !- Back Side Infrared Hemispherical Emissivity + 0.933000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_9731_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.012480, !- Thickness {m} + 0.369424, !- Solar Transmittance at Normal Incidence + 2.079376e-001, !- Front Side Solar Reflectance at Normal Incidence + 2.033990e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.710088, !- Visible Transmittance at Normal Incidence + 0.071115, !- Front Side Visible Reflectance at Normal Incidence + 0.070696, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.840000, !- Back Side Infrared Hemispherical Emissivity + 0.815000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_4313_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003850, !- Thickness {m} + 0.373486, !- Solar Transmittance at Normal Incidence + 7.114256e-002, !- Front Side Solar Reflectance at Normal Incidence + 9.944001e-002, !- Back Side Solar Reflectance at Normal Incidence + 0.601300, !- Visible Transmittance at Normal Incidence + 0.077225, !- Front Side Visible Reflectance at Normal Incidence + 0.096992, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.298000, !- Back Side Infrared Hemispherical Emissivity + 1.000000; !- Conductivity {W/m-K} + + WindowMaterial:Glazing, + Glass_1576_LayerAvg, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.003058, !- Thickness {m} + 0.167637, !- Solar Transmittance at Normal Incidence + 3.034693e-001, !- Front Side Solar Reflectance at Normal Incidence + 1.825558e-001, !- Back Side Solar Reflectance at Normal Incidence + 0.341994, !- Visible Transmittance at Normal Incidence + 0.128888, !- Front Side Visible Reflectance at Normal Incidence + 0.128077, !- Back Side Visible Reflectance at Normal Incidence + 0.000000, !- Infrared Transmittance at Normal Incidence + 0.840000, !- Front Side Infrared Hemispherical Emissivity + 0.868000, !- Back Side Infrared Hemispherical Emissivity + 0.846000; !- Conductivity {W/m-K} + +!----------------------------------------------------- +! Window Construction +!----------------------------------------------------- + + CONSTRUCTION, + Window_U_0.37_SHGC_0.45, !- Name + Glass_4321_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.41_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.40_SHGC_0.4, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.40_SHGC_0.38, !- Name + Glass_8652_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.39_SHGC_0.40, !- Name + Glass_282_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +!- CONSTRUCTION, +!- Window_U_0.41_SHGC_0.38, !- Glazing System name: VE50 SR CDF.CPF (GlzSys_873) +!- Glass_2531_LayerAvg, !- glass name : VE50 SR CDF.CPF +!- Gap_1_W_0_0127, !- gap name - Air +!- Glass_102_LayerAvg; !- glass name : CLEAR_3.DAT +!- CONSTRUCTION, +!- Window_U_0.40_SHGC_0.38, !- Glazing System name: SILAG50LE_3.bsf (GlzSys_78) +!- Glass_282_LayerAvg, !- glass name : SILAG50LE_3.bsf +!- Gap_1_W_0_0127, !- gap name - Air +!- Glass_102_LayerAvg; !- glass name : CLEAR_3.DAT + + CONSTRUCTION, + Window_U_0.45_SHGC_0.38, !- Name + Glass_2532_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.44_SHGC_0.40, !- Name + Glass_9731_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.38_SHGC_0.36, !- Name + Glass_2531_LayerAvg, !- Outside Layer + Gap_9_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +!-_________________________________________________ +!- Created Using varying Air Film thickness +!-_________________________________________________ + + CONSTRUCTION, + Window_U_0.38_SHGC_0.41, !- Name + Glass_4313_LayerAvg, !- Outside Layer + Gap_1_W_0_0127, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.51_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0090, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.54_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0070, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.56_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0060, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.59_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0048, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + + CONSTRUCTION, + Window_U_0.58_SHGC_0.25, !- Name + Glass_1576_LayerAvg, !- Outside Layer + Gap_1_W_0_0052, !- Layer 2 + Glass_102_LayerAvg; !- Layer 3 + +!- =========== ALL OBJECTS IN CLASS: SCHEDULETYPELIMITS =========== + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + Humidity, !- Name + 10, !- Lower Limit Value + 90, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Number; !- Name + +!- =========== ALL OBJECTS IN CLASS: SCHEDULE:COMPACT =========== +! lighting schedules for ASHRAE90.1-STD2004, ASHRAE90.1-2007 +! lighting schedules for ASHRAE90.1-STD2010 +! lighting schedules for IECC2006 / IECC2009 +! lighting schedules for IECC2012 +! lighting schedules for IECC2015 +! lighting schedules for ASHRAE1891_2009 +! lighting schedules for ASHRAE1891_2011 +! lighting schedules for ASHRAE90.1-2013 + + Schedule:Compact, + BLDG_LIGHT_BATH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.594, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.33, !- Field 24 + Until: 21:00,0.117018, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.594, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_CLASSROOM_SCH,!- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.5982912, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.332384, !- Field 24 + Until: 21:00,0.1178633664, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.5982912, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_CORRIDOR_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.551772, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.30654, !- Field 24 + Until: 21:00,0.108699084,!- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.551772, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_GYM_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.88182, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.4899, !- Field 24 + Until: 21:00,0.17371854, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.88182, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_LIBRARY_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.8325, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.4625, !- Field 24 + Until: 21:00,0.1640025, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.8325, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_LOBBYFLR1_SCH,!- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.855, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.475, !- Field 24 + Until: 21:00,0.168435, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.855, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_OFFICE_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 8:00,0.9, !- Field 5 + Until: 21:00,0.7479585, !- Field 7 + Until: 24:00,0.1773, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 24:00,1, !- Field 12 + For: WinterDesignDay, !- Field 14 + Until: 24:00,0, !- Field 15 + For: WeekEnds Holidays AllOtherDays, !- Field 17 + Until: 24:00,0.1773, !- Field 18 + Through: 9/1, !- Field 20 + For: Weekdays, !- Field 21 + Until: 8:00,0.1773, !- Field 22 + Until: 20:00,0.4155325, !- Field 24 + Until: 21:00,0.1473478245, !- Field 26 + Until: 24:00,0.1773, !- Field 28 + For: SummerDesignDay, !- Field 30 + Until: 24:00,1, !- Field 31 + For: WinterDesignDay, !- Field 33 + Until: 24:00,0, !- Field 34 + For: WeekEnds Holidays AllOtherDays, !- Field 36 + Until: 24:00,0.1773, !- Field 37 + Through: 12/31, !- Field 39 + For: Weekdays, !- Field 40 + Until: 7:00,0.1773, !- Field 41 + Until: 8:00,0.9, !- Field 43 + Until: 21:00,0.7479585, !- Field 45 + Until: 24:00,0.1773, !- Field 47 + For: SummerDesignDay, !- Field 49 + Until: 24:00,1, !- Field 50 + For: WinterDesignDay, !- Field 52 + Until: 24:00,0, !- Field 53 + For: WeekEnds Holidays AllOtherDays, !- Field 55 + Until: 24:00,0.1773; !- Field 56 + + Schedule:Compact, + BLDG_LIGHT_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 21:00,0.9, !- Field 5 + Until: 24:00,0.1773, !- Field 7 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 12 + Until: 24:00,0, !- Field 13 + For: WeekEnds Holidays AllOtherDays, !- Field 15 + Until: 24:00,0.1773, !- Field 16 + Through: 9/1, !- Field 18 + For: Weekdays, !- Field 19 + Until: 8:00,0.1773, !- Field 20 + Until: 20:00,0.5, !- Field 22 + Until: 24:00,0.1773, !- Field 24 + For: SummerDesignDay, !- Field 26 + Until: 24:00,1, !- Field 27 + For: WinterDesignDay, !- Field 29 + Until: 24:00,0, !- Field 30 + For: WeekEnds Holidays AllOtherDays, !- Field 32 + Until: 24:00,0.1773, !- Field 33 + Through: 12/31, !- Field 35 + For: Weekdays, !- Field 36 + Until: 7:00,0.1773, !- Field 37 + Until: 21:00,0.9, !- Field 39 + Until: 24:00,0.1773, !- Field 41 + For: SummerDesignDay, !- Field 43 + Until: 24:00,1, !- Field 44 + For: WinterDesignDay, !- Field 46 + Until: 24:00,0, !- Field 47 + For: WeekEnds Holidays AllOtherDays, !- Field 49 + Until: 24:00,0.1773; !- Field 50 + +! Equipment Schedule + + Schedule:Compact, + BLDG_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 08:00,0.35, !- Field 3 + Until: 17:00,0.95, !- Field 5 + Until: 24:00,0.35, !- Field 7 + For: WinterDesignDay, !- Field 9 + Until: 24:00,0.35, !- Field 10 + For: Weekdays, !- Field 12 + Until: 08:00,0.29562366715, !- Field 13 + Until: 17:00,0.90367002475, !- Field 15 + Until: 21:00,0.33293106175, !- Field 17 + Until: 24:00,0.29562366715, !- Field 19 + For: WeekEnds Holidays AllOtherDays, !- Field 21 + Until: 24:00,0.29562366715, !- Field 22 + Through: 9/1, !- Field 24 + For: SummerDesignDay, !- Field 25 + Until: 08:00,0.25, !- Field 26 + Until: 17:00,0.50, !- Field 28 + Until: 24:00,0.25, !- Field 30 + For: WinterDesignDay, !- Field 32 + Until: 24:00,0.25, !- Field 33 + For: Weekdays, !- Field 35 + Until: 08:00,0.21115976225, !- Field 36 + Until: 17:00,0.4756158025, !- Field 38 + Until: 21:00,0.23780790125, !- Field 40 + Until: 24:00,0.21115976225, !- Field 42 + For: WeekEnds Holidays AllOtherDays, !- Field 44 + Until: 24:00,0.21115976225, !- Field 45 + Through: 12/31, !- Field 47 + For: SummerDesignDay, !- Field 48 + Until: 08:00,0.35, !- Field 49 + Until: 17:00,0.95, !- Field 51 + Until: 24:00,0.35, !- Field 53 + For: WinterDesignDay, !- Field 55 + Until: 24:00,0.35, !- Field 56 + For: Weekdays, !- Field 58 + Until: 08:00,0.29562366715, !- Field 59 + Until: 17:00,0.90367002475, !- Field 61 + Until: 21:00,0.33293106175, !- Field 63 + Until: 24:00,0.29562366715, !- Field 65 + For: WeekEnds Holidays AllOtherDays, !- Field 67 + Until: 24:00,0.29562366715; !- Field 68 + + Schedule:Compact, + KITCHEN_ELEC_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 08:00,0.1, !- Field 3 + Until: 10:00,0.15, !- Field 5 + Until: 13:00,0.25, !- Field 7 + Until: 15:00,0.15, !- Field 9 + Until: 24:00,0.1, !- Field 11 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 13 + Until: 24:00,0.1, !- Field 14 + Through: 9/1, !- Field 16 + For: Weekdays SummerDesignDay, !- Field 17 + Until: 08:00,0.1, !- Field 18 + Until: 10:00,0.15, !- Field 20 + Until: 13:00,0.25, !- Field 22 + Until: 15:00,0.15, !- Field 24 + Until: 24:00,0.1, !- Field 26 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 28 + Until: 24:00,0.1, !- Field 29 + Through: 12/31, !- Field 31 + For: Weekdays SummerDesignDay, !- Field 32 + Until: 08:00,0.1, !- Field 33 + Until: 10:00,0.15, !- Field 35 + Until: 13:00,0.25, !- Field 37 + Until: 15:00,0.15, !- Field 39 + Until: 24:00,0.1, !- Field 41 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 43 + Until: 24:00,0.1; !- Field 44 + + Schedule:Compact, + KITCHEN_GAS_EQUIP_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 08:00,0.02, !- Field 3 + Until: 10:00,0.15, !- Field 5 + Until: 13:00,0.2, !- Field 7 + Until: 15:00,0.1, !- Field 9 + Until: 24:00,0.02, !- Field 11 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 13 + Until: 24:00,0.02, !- Field 14 + Through: 9/1, !- Field 16 + For: Weekdays SummerDesignDay, !- Field 17 + Until: 08:00,0.02, !- Field 18 + Until: 10:00,0.15, !- Field 20 + Until: 13:00,0.2, !- Field 22 + Until: 15:00,0.1, !- Field 24 + Until: 24:00,0.02, !- Field 26 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 28 + Until: 24:00,0.02, !- Field 29 + Through: 12/31, !- Field 31 + For: Weekdays SummerDesignDay, !- Field 32 + Until: 08:00,0.02, !- Field 33 + Until: 10:00,0.15, !- Field 35 + Until: 13:00,0.2, !- Field 37 + Until: 15:00,0.1, !- Field 39 + Until: 24:00,0.02, !- Field 41 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 43 + Until: 24:00,0.02; !- Field 44 + + Schedule:Compact, + BLDG_ELEVATORS, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,0.30, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,0.00, !- Field 6 + For: Weekdays, !- Field 8 + Until: 08:00,0.00, !- Field 9 + Until: 15:00,0.30, !- Field 11 + Until: 16:00,0.15, !- Field 13 + Until: 24:00,0.00, !- Field 15 + For: AllOtherDays, !- Field 17 + Until: 24:00,0.00; !- Field 18 + + Schedule:Compact, + ELEV_LIGHT_FAN_SCH_24_7, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ELEV_LIGHT_FAN_SCH_ADD_DF, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,0.30, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,0.00, !- Field 6 + For: Weekdays, !- Field 8 + Until: 08:00,0.00, !- Field 9 + Until: 15:00,0.30, !- Field 11 + Until: 16:00,0.15, !- Field 13 + Until: 24:00,0.00, !- Field 15 + For: AllOtherDays, !- Field 17 + Until: 24:00,0.00; !- Field 18 + +! Occupancy Schedule +! Minimum Occupancy Percent: 0 +! Maximum Occupancy Percent: 95 + + Schedule:Compact, + BLDG_OCC_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/15, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 16:00,0.95, !- Field 5 + Until: 21:00,0.15, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 08:00,0.000000001,!- Field 12 + Until: 16:00,0.95, !- Field 14 + Until: 21:00,0.15, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/15, !- Field 23 + For: Weekdays, !- Field 24 + Until: 08:00,0, !- Field 25 + Until: 16:00,0.15, !- Field 27 + Until: 21:00,0.15, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 08:00,0.000000001,!- Field 34 + Until: 16:00,0.15, !- Field 36 + Until: 21:00,0.15, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 08:00,0, !- Field 47 + Until: 16:00,0.95, !- Field 49 + Until: 21:00,0.15, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 08:00,0.000000001,!- Field 56 + Until: 16:00,0.95, !- Field 58 + Until: 21:00,0.15, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + + Schedule:Compact, + BLDG_OCC_SCH_Extend, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 16:00,0.95, !- Field 5 + Until: 21:00,0.95, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 08:00,0.000000001,!- Field 12 + Until: 16:00,0.95, !- Field 14 + Until: 21:00,0.95, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/1, !- Field 23 + For: Weekdays, !- Field 24 + Until: 08:00,0, !- Field 25 + Until: 17:00,0.5, !- Field 27 + Until: 21:00,0.5, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 08:00,0.000000001,!- Field 34 + Until: 17:00,0.5, !- Field 36 + Until: 21:00,0.5, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 08:00,0, !- Field 47 + Until: 17:00,0.95, !- Field 49 + Until: 21:00,0.95, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 08:00,0.000000001,!- Field 56 + Until: 17:00,0.95, !- Field 58 + Until: 21:00,0.95, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + + Schedule:Compact, + BLDG_OCC_SCH_Offices, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 17:00,0.95, !- Field 5 + Until: 21:00,0.15, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 08:00,0.000000001,!- Field 12 + Until: 17:00,0.95, !- Field 14 + Until: 21:00,0.15, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/1, !- Field 23 + For: Weekdays, !- Field 24 + Until: 08:00,0, !- Field 25 + Until: 17:00,0.5, !- Field 27 + Until: 21:00,0.15, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 08:00,0.000000001,!- Field 34 + Until: 17:00,0.5, !- Field 36 + Until: 21:00,0.15, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 08:00,0, !- Field 47 + Until: 17:00,0.95, !- Field 49 + Until: 21:00,0.15, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 08:00,0.000000001,!- Field 56 + Until: 17:00,0.95, !- Field 58 + Until: 21:00,0.15, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + + Schedule:Compact, + BLDG_OCC_SCH_Gym, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 16:00,0.35, !- Field 5 + Until: 21:00,0.95, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 08:00,0.000000001,!- Field 12 + Until: 16:00,0.35, !- Field 14 + Until: 21:00,0.95, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/1, !- Field 23 + For: Weekdays, !- Field 24 + Until: 08:00,0, !- Field 25 + Until: 16:00,0.35, !- Field 27 + Until: 21:00,0.35, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 08:00,0.000000001,!- Field 34 + Until: 16:00,0.35, !- Field 36 + Until: 21:00,0.35, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 08:00,0, !- Field 47 + Until: 16:00,0.35, !- Field 49 + Until: 21:00,0.95, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 08:00,0.000000001,!- Field 56 + Until: 16:00,0.35, !- Field 58 + Until: 21:00,0.95, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + + Schedule:Compact, + BLDG_OCC_SCH_Auditorium, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 15:00,0.25, !- Field 5 + Until: 20:00,0.95, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 08:00,0.000000001,!- Field 12 + Until: 15:00,0.25, !- Field 14 + Until: 20:00,0.95, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/1, !- Field 23 + For: Weekdays, !- Field 24 + Until: 08:00,0, !- Field 25 + Until: 17:00,0.15, !- Field 27 + Until: 19:00,0.35, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 08:00,0.000000001,!- Field 34 + Until: 17:00,0.15, !- Field 36 + Until: 19:00,0.35, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 08:00,0, !- Field 47 + Until: 15:00,0.25, !- Field 49 + Until: 20:00,0.95, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 08:00,0.000000001,!- Field 56 + Until: 15:00,0.25, !- Field 58 + Until: 20:00,0.95, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + + Schedule:Compact, + BLDG_OCC_SCH_Cafeteria, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 09:00,0, !- Field 3 + Until: 15:00,0.95, !- Field 5 + Until: 20:00,0.35, !- Field 7 + Until: 24:00,0, !- Field 9 + For: SummerDesignDay, !- Field 11 + Until: 09:00,0.000000001,!- Field 12 + Until: 15:00,0.95, !- Field 14 + Until: 20:00,0.35, !- Field 16 + Until: 24:00,0.000000001,!- Field 18 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 20 + Until: 24:00,0, !- Field 21 + Through: 9/1, !- Field 23 + For: Weekdays, !- Field 24 + Until: 09:00,0, !- Field 25 + Until: 17:00,0.15, !- Field 27 + Until: 19:00,0.35, !- Field 29 + Until: 24:00,0, !- Field 31 + For: SummerDesignDay, !- Field 33 + Until: 09:00,0.000000001,!- Field 34 + Until: 17:00,0.15, !- Field 36 + Until: 19:00,0.35, !- Field 38 + Until: 24:00,0.000000001,!- Field 40 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 42 + Until: 24:00,0, !- Field 43 + Through: 12/31, !- Field 45 + For: Weekdays, !- Field 46 + Until: 09:00,0, !- Field 47 + Until: 15:00,0.95, !- Field 49 + Until: 20:00,0.35, !- Field 51 + Until: 24:00,0, !- Field 53 + For: SummerDesignDay, !- Field 55 + Until: 09:00,0.000000001,!- Field 56 + Until: 15:00,0.95, !- Field 58 + Until: 20:00,0.35, !- Field 60 + Until: 24:00,0.000000001,!- Field 62 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 64 + Until: 24:00,0; !- Field 65 + +! Infiltration Schedule +! Infiltration Percent w/o HVAC: 100 +! Infiltration Percent w/HVAC: 0 + + Schedule:Compact, + INFIL_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 07:00,1, !- Field 3 + Until: 21:00,0.25, !- Field 5 + Until: 24:00,1; !- Field 7 + + Schedule:Compact, + INFIL_SCH_PNNL, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 07:00,1.0, !- Field 3 + Until: 21:00,0.25, !- Field 5 + Until: 24:00,1.0, !- Field 7 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 9 + Until: 24:00,1.0; !- Field 10 + + Schedule:Compact, + INFIL_Door_Opening_SCH, !- Name + fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 07:00,0.0, !- Field 3 + Until: 08:00,1.0, !- Field 5 + Until: 15:00,0.144, !- Field 7 + Until: 17:00,1.0, !- Field 9 + Until: 19:00,0.144, !- Field 11 + Until: 24:00,0.0, !- Field 13 + For: Saturday Sunday Holidays AllOtherDays, !- Field 15 + Until: 24:00,0.0; !- Field 16 + +! Schedule School Service Water Heating, ASHRAE 90.1-1989, Section 13 + + Schedule:Compact, + Booster Water Inlet Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 24:00,60.00; !- Field 3 + + Schedule:Compact, + Booster Water Setpoint Temp Schedule, !- Name + Any Number, !- Schedule Type Limits Name + THROUGH: 12/31, !- Field 1 + FOR: AllDays, !- Field 2 + UNTIL: 24:00,82.22; !- Field 3 + + Schedule:Compact, + BLDG_SWH_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/15, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 07:00,0.05, !- Field 3 + Until: 08:00,0.1, !- Field 5 + Until: 09:00,0.34, !- Field 7 + Until: 10:00,0.6, !- Field 9 + Until: 11:00,0.63, !- Field 11 + Until: 12:00,0.72, !- Field 13 + Until: 13:00,0.79, !- Field 15 + Until: 14:00,0.83, !- Field 17 + Until: 15:00,0.61, !- Field 19 + Until: 16:00,0.65, !- Field 21 + Until: 18:00,0.1, !- Field 23 + Until: 19:00,0.19, !- Field 25 + Until: 20:00,0.25, !- Field 27 + Until: 22:00,0.22, !- Field 29 + Until: 23:00,0.12, !- Field 31 + Until: 24:00,0.09, !- Field 33 + For: Weekdays, !- Field 35 + Until: 07:00,0.00, !- Field 36 + Until: 08:00,0.00, !- Field 38 + Until: 09:00,0.34, !- Field 40 + Until: 10:00,0.6, !- Field 42 + Until: 11:00,0.63, !- Field 44 + Until: 12:00,0.72, !- Field 46 + Until: 13:00,0.79, !- Field 48 + Until: 14:00,0.83, !- Field 50 + Until: 15:00,0.61, !- Field 52 + Until: 16:00,0.65, !- Field 54 + Until: 18:00,0.1, !- Field 56 + Until: 19:00,0.19, !- Field 58 + Until: 20:00,0.25, !- Field 60 + Until: 22:00,0.00, !- Field 62 + Until: 23:00,0.00, !- Field 64 + Until: 24:00,0.00, !- Field 66 + For: WinterDesignDay, !- Field 68 + Until: 09:00,0.03, !- Field 69 + Until: 13:00,0.05, !- Field 71 + Until: 24:00,0.03, !- Field 73 + For: Saturday, !- Field 75 + Until: 09:00,0.00, !- Field 76 + Until: 13:00,0.00, !- Field 78 + Until: 24:00,0.00, !- Field 80 + For: Sunday Holidays AllOtherDays, !- Field 82 + Until: 08:00,0.00, !- Field 83 + Until: 14:00,0.00, !- Field 85 + Until: 24:00,0.00, !- Field 87 + Through: 9/15, !- Field 89 + For: SummerDesignDay, !- Field 90 + Until: 07:00,0.05, !- Field 91 + Until: 18:00,0.1, !- Field 93 + Until: 19:00,0.19, !- Field 95 + Until: 20:00,0.25, !- Field 97 + Until: 22:00,0.22, !- Field 99 + Until: 23:00,0.12, !- Field 101 + Until: 24:00,0.09, !- Field 103 + For: Weekdays, !- Field 105 + Until: 08:00,0.00, !- Field 106 + Until: 18:00,0.1, !- Field 108 + Until: 19:00,0.19, !- Field 110 + Until: 20:00,0.25, !- Field 112 + Until: 22:00,0.00, !- Field 114 + Until: 23:00,0.00, !- Field 116 + Until: 24:00,0.00, !- Field 118 + For: WinterDesignDay, !- Field 120 + Until: 09:00,0.03, !- Field 121 + Until: 13:00,0.05, !- Field 123 + Until: 24:00,0.03, !- Field 125 + For: Saturday, !- Field 127 + Until: 09:00,0.00, !- Field 128 + Until: 13:00,0.00, !- Field 130 + Until: 24:00,0.00, !- Field 132 + For: Sunday Holidays AllOtherDays, !- Field 134 + Until: 08:00,0.00, !- Field 135 + Until: 14:00,0.00, !- Field 137 + Until: 24:00,0.00, !- Field 139 + Through: 12/31, !- Field 141 + For: SummerDesignDay, !- Field 142 + Until: 07:00,0.05, !- Field 143 + Until: 08:00,0.1, !- Field 145 + Until: 09:00,0.34, !- Field 147 + Until: 10:00,0.6, !- Field 149 + Until: 11:00,0.63, !- + Until: 12:00,0.72, !- + Until: 13:00,0.79, !- + Until: 14:00,0.83, !- + Until: 15:00,0.61, !- + Until: 16:00,0.65, !- + Until: 18:00,0.1, !- + Until: 19:00,0.19, !- + Until: 20:00,0.25, !- + Until: 22:00,0.22, !- + Until: 23:00,0.12, !- + Until: 24:00,0.09, !- + For: Weekdays, !- + Until: 07:00,0.00, !- + Until: 08:00,0.00, !- + Until: 09:00,0.34, !- + Until: 10:00,0.6, !- + Until: 11:00,0.63, !- + Until: 12:00,0.72, !- + Until: 13:00,0.79, !- + Until: 14:00,0.83, !- + Until: 15:00,0.61, !- + Until: 16:00,0.65, !- + Until: 18:00,0.1, !- + Until: 19:00,0.19, !- + Until: 20:00,0.25, !- + Until: 22:00,0.00, !- + Until: 23:00,0.00, !- + Until: 24:00,0.00, !- + For: WinterDesignDay, !- + Until: 09:00,0.03, !- + Until: 13:00,0.05, !- + Until: 24:00,0.03, !- + For: Saturday, !- + Until: 09:00,0.00, !- + Until: 13:00,0.00, !- + Until: 24:00,0.00, !- + For: Sunday Holidays AllOtherDays, !- + Until: 08:00,0.00, !- + Until: 14:00,0.00, !- + Until: 24:00,0.00; !- + + Schedule:Compact, + ALWAYS_ON, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Exterior_Lgt_ALWAYS_ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Exterior_Lgt_189_1, !- Name + Fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:Weekdays, !- Field 2 + Until: 9:00,0.5, !- Field 3 + Until: 21:00,1.0, !- Field 5 + Until: 24:00,0.5, !- Field 7 + For:Saturday, !- Field 9 + Until: 24:00,0.5, !- Field 10 + For:Sunday Holidays AllOtherDays, !- Field 12 + Until: 24:00,0.5; !- Field 13 + + Schedule:Compact, + ALWAYS_OFF, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0; !- Field 3 + + Schedule:Compact, + WORK_EFF_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0; !- Field 3 + + Schedule:Compact, + AIR_VELO_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + CLOTHING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 04/30, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.1, !- Field 3 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.6, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.1; !- Field 11 + + Schedule:Compact, + SHADING_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0; !- Field 3 + + Schedule:Compact, + PlantOnSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + FAN_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + ReheatCoilAvailSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Humidity Setpoint Schedule, !- Name + Humidity, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,65; !- Field 3 + + Schedule:Compact, + Dual Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + Seasonal-Reset-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 03/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,13, !- Field 3 + Through: 09/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,13, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,13; !- Field 11 + + Schedule:Compact, + VAV-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,12.8; !- Field 3 + + Schedule:Compact, + CW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,6.7; !- Field 3 + + Schedule:Compact, + HW-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,82; !- Field 3 + + Schedule:Compact, + Heating-Supply-Air-Temp-Sch, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,16; !- Field 3 + + Schedule:Compact, + Kitchen_Exhaust_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 17:00,1.0, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0, !- Field 10 + Through: 9/1, !- Field 12 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 13 + Until: 08:00,0, !- Field 14 + Until: 17:00,1.0, !- Field 16 + Until: 21:00,1.0, !- Field 18 + Until: 24:00,0, !- Field 20 + For: WeekEnds Holidays AllOtherDays, !- Field 22 + Until: 24:00,0, !- Field 23 + Through: 12/31, !- Field 25 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 26 + Until: 08:00,0, !- Field 27 + Until: 16:00,1.0, !- Field 29 + Until: 21:00,1.0, !- Field 31 + Until: 24:00,0, !- Field 33 + For: WeekEnds Holidays AllOtherDays, !- Field 35 + Until: 24:00,0; !- Field 36 + +! Schedule for hours of operation + + Schedule:Compact, + Hours_of_operation, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0; !- Field 10 + +! Schedule for HVAC operation + + Schedule:Compact, + HVACOperationSchd, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0; !- Field 10 + +! Heating Setpoint + + Schedule:Compact, + HTGSETP_SCH_NO_OPTIMUM, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + + Schedule:Compact, + HTGSETP_SCH_YES_OPTIMUM, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,17.8, !- Field 11 + Until: 08:00,20.0, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + + Schedule:Compact, + HTGSETP_SCH_Yes_Optimum_Original, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,17.8, !- Field 11 + Until: 08:00,20.0, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + + Schedule:Compact, + HTGSETP_SCH_Setback, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 09:00,15.6, !- Field 9 + Until: 21:00,15.6, !- Field 11 + Until: 24:00,15.6, !- Field 13 + For: WeekEnds Holidays AllOtherDays, !- Field 15 + Until: 24:00,15.6; !- Field 16 + +! HTGSETP_SCH_PSZ_AC_5_9, !- Name This is the same as HTGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + HTGSETP_SCH_PSZ_AC_5_9, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + +! HTGSETP_SCH_PSZ_AC_4_8, !- Name This is the same as HTGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + HTGSETP_SCH_PSZ_AC_4_8, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + +! HTGSETP_SCH_PSZ_AC_3_7, !- Name This is the same as HTGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + HTGSETP_SCH_PSZ_AC_3_7, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + +! HTGSETP_SCH_PSZ_AC_2_6, !- Name This is the same as HTGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + HTGSETP_SCH_PSZ_AC_2_6, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + +! HTGSETP_SCH_PSZ_AC_1_5, !- Name This is the same as HTGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + HTGSETP_SCH_PSZ_AC_1_5, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,15.6, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,21, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,15.6, !- Field 9 + Until: 07:00,21, !- Field 11 + Until: 08:00,21, !- Field 13 + Until: 21:00,21, !- Field 15 + Until: 24:00,15.6, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,15.6; !- Field 20 + +! Cooling Setpoint + + Schedule:Compact, + CLGSETP_SCH_NO_OPTIMUM, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + + Schedule:Compact, + CLGSETP_SCH_YES_OPTIMUM, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,27.8, !- Field 11 + Until: 08:00,25.6, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + + Schedule:Compact, + CLGSETP_SCH_Yes_Optimum_Original, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,27.8, !- Field 11 + Until: 08:00,25.6, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + + Schedule:Compact, + CLGSETP_SCH_NO_SETBACK, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,24, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,24, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,24; !- Field 20 + + Schedule:Compact, + CLGSETP_SCH_Setup, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 24:00,29.44, !- Field 9 + For: WeekEnds Holidays AllOtherDays, !- Field 11 + Until: 09:00,29.44, !- Field 12 + Until: 19:00,29.44, !- Field 14 + Until: 24:00,29.44; !- Field 16 + +! CLGSETP_SCH_PSZ_AC_5_9, !- Name This is the same as CLGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + CLGSETP_SCH_PSZ_AC_5_9, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + +! CLGSETP_SCH_PSZ_AC_4_8, !- Name This is the same as CLGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + CLGSETP_SCH_PSZ_AC_4_8, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + +! CLGSETP_SCH_PSZ_AC_3_7, !- Name This is the same as CLGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + CLGSETP_SCH_PSZ_AC_3_7, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + +! CLGSETP_SCH_PSZ_AC_2_6, !- Name This is the same as CLGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + CLGSETP_SCH_PSZ_AC_2_6, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + +! CLGSETP_SCH_PSZ_AC_1_5, !- Name This is the same as CLGSETP_SCH_NO_OPTIMUM + + Schedule:Compact, + CLGSETP_SCH_PSZ_AC_1_5, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: SummerDesignDay, !- Field 2 + Until: 24:00,24, !- Field 3 + For: WinterDesignDay, !- Field 5 + Until: 24:00,29.44, !- Field 6 + For: Weekdays, !- Field 8 + Until: 06:00,29.44, !- Field 9 + Until: 07:00,24, !- Field 11 + Until: 08:00,24, !- Field 13 + Until: 21:00,24, !- Field 15 + Until: 24:00,29.44, !- Field 17 + For: WeekEnds Holidays AllOtherDays, !- Field 19 + Until: 24:00,29.44; !- Field 20 + +! Minimum outside air schedule +! Gravity Damper + + Schedule:Compact, + MinOA_Sched, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay, !- Field 2 + Until: 24:00,1, !- Field 3 + For: WeekEnds WinterDesignDay Holidays AllOtherDays, !- Field 5 + Until: 24:00,1; !- Field 6 + +! Minimum outside air schedule +! Motorized Damper + + Schedule:Compact, + MinOA_MotorizedDamper_Sched, !- Name + On/Off, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0; !- Field 10 + +! Activity Schedule + + Schedule:Compact, + ACTIVITY_SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,120; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_1 SHW_default Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_1 SHW_default Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_1 SHW_default Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_1 SHW_default Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_2 SHW_default Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_2 SHW_default Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_2 SHW_default Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60; !- Field 3 + + Schedule:Compact, + Bathrooms_ZN_1_FLR_2 SHW_default Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1 SHW_default Latent fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.05; !- Field 3 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1 SHW_default Sensible fract sched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.2; !- Field 3 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1 SHW_default Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60; !- Field 3 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1 SHW_default Hot Supply Temp Sched, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,55; !- Field 3 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Name + ON/OFF, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:Average, !- Field 3 + Until: 11:00,0, !- Field 4 + Until: 11:20,1, !- Field 6 + Until: 23:00,0, !- Field 8 + Until: 23:20,1, !- Field 10 + Until: 24:00,0; !- Field 12 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Name + ON/OFF, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:Average, !- Field 3 + Until: 11:00,0, !- Field 4 + Until: 11:30,1, !- Field 6 + Until: 23:00,0, !- Field 8 + Until: 23:30,1, !- Field 10 + Until: 24:00,0; !- Field 12 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_WalkInStockingSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Tuesday Friday, !- Field 2 + Until: 4:00,0.0, !- Field 3 + Until: 5:00,725.0, !- Field 5 + Until: 6:00,417.0, !- Field 7 + Until: 7:00,290.0, !- Field 9 + Until: 24:00,0.0, !- Field 11 + For: AllOtherDays, !- Field 13 + Until: 4:00,0.0, !- Field 14 + Until: 5:00,125.0, !- Field 16 + Until: 6:00,117.0, !- Field 18 + Until: 7:00,90.0, !- Field 20 + Until: 19:00,0.0, !- Field 22 + Until: 20:00,125.0, !- Field 24 + Until: 21:00,117.0, !- Field 26 + Until: 22:00,90.0, !- Field 28 + Until: 24:00,0.0; !- Field 30 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseCreditReduxSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Interpolate:No, !- Field 3 + Until: 7:00,0.2, !- Field 4 + Until: 21:00,0.4, !- Field 6 + Until: 24:00,0.2; !- Field 8 + + Schedule:Compact, + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 7:00,50.0, !- Field 5 + Until: 9:00,70.0, !- Field 7 + Until: 10:00,80.0, !- Field 9 + Until: 11:00,70.0, !- Field 11 + Until: 13:00,50.0, !- Field 13 + Until: 14:00,80.0, !- Field 15 + Until: 15:00,90.0, !- Field 17 + Until: 16:00,80.0, !- Field 19 + Until: 24:00,0.0; !- Field 21 + + Schedule:Compact, + SHWSys1-Loop-Temp-Schedule, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + SHWSys1 Water Heater Setpoint Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,60.0; !- Field 3 + + Schedule:Compact, + SHWSys1 Water Heater Ambient Temperature Schedule Name, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,22.0; !- Field 3 + + Schedule:Compact, + walkin_occ_lght_SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays, !- Field 2 + Until: 7:00,0.1773, !- Field 3 + Until: 21:00,0.468, !- Field 5 + Until: 24:00,0.1773, !- Field 7 + For: SummerDesignDay, !- Field 9 + Until: 24:00,1, !- Field 10 + For: WinterDesignDay, !- Field 12 + Until: 24:00,0, !- Field 13 + For: WeekEnds Holidays AllOtherDays, !- Field 15 + Until: 24:00,0.1773, !- Field 16 + Through: 9/1, !- Field 18 + For: Weekdays, !- Field 19 + Until: 8:00,0.1773, !- Field 20 + Until: 20:00,0.26, !- Field 22 + Until: 24:00,0.1773, !- Field 24 + For: SummerDesignDay, !- Field 26 + Until: 24:00,1, !- Field 27 + For: WinterDesignDay, !- Field 29 + Until: 24:00,0, !- Field 30 + For: WeekEnds Holidays AllOtherDays, !- Field 32 + Until: 24:00,0.1773, !- Field 33 + Through: 12/31, !- Field 35 + For: Weekdays, !- Field 36 + Until: 7:00,0.1773, !- Field 37 + Until: 21:00,0.468, !- Field 39 + Until: 24:00,0.1773, !- Field 41 + For: SummerDesignDay, !- Field 43 + Until: 24:00,1, !- Field 44 + For: WinterDesignDay, !- Field 46 + Until: 24:00,0, !- Field 47 + For: WeekEnds Holidays AllOtherDays, !- Field 49 + Until: 24:00,0.1773; !- Field 50 + +!- =========== ALL OBJECTS IN CLASS: GLOBALGEOMETRYRULES =========== + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + Counterclockwise, !- Vertex Entry Direction + Relative, !- Coordinate System + Relative; !- Daylighting Reference Point Coordinate System + +!- =========== ALL OBJECTS IN CLASS: ZONE =========== + + Zone, + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_1_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 9.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_1_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 9.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 40.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 40.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 40.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 40.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_2_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 49.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_2_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 49.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 54.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 54.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 54.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 54.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 81.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 81.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 81.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 81.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_3_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 90.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corridor_Pod_3_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 90.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1280.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 95.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 0.0000, !- X Origin {m} + 95.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 396.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 95.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 11.0000, !- X Origin {m} + 95.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1908.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Main_Corridor_ZN_1_FLR_1,!- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 4560.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Main_Corridor_ZN_1_FLR_2,!- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 4560.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Lobby_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 840.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Lobby_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 840.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Bathrooms_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 90.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 840.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Bathrooms_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 64.0000, !- X Origin {m} + 90.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 840.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Offices_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 2128.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Offices_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 0.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 2128.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Gym_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 15808.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Aux_Gym_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 117.0000, !- X Origin {m} + 14.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 9984.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Auditorium_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 75.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 7904.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Kitchen_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 117.0000, !- X Origin {m} + 66.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 864.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 117.0000, !- X Origin {m} + 66.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 3360.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Cafeteria_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 117.0000, !- X Origin {m} + 75.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 2496.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mech_ZN_1_FLR_1, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 66.0000, !- Y Origin {m} + 0.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1368.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + + Zone, + Mech_ZN_1_FLR_2, !- Name + 0.0000, !- Direction of Relative North {deg} + 79.0000, !- X Origin {m} + 66.0000, !- Y Origin {m} + 4.0000, !- Z Origin {m} + 1, !- Type + 1.0000, !- Multiplier + 4.0000, !- Ceiling Height {m} + 1368.0000, !- Volume {m3} + autocalculate, !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + Yes; !- Part of Total Floor Area + +!- =========== ALL OBJECTS IN CLASS: BUILDINGSURFACE:DETAILED =========== + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_12, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_10, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_10, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_9, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_9, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_8, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_8, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_1_Wall_6, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_2_Wall_6, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 64.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_6, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 64.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 64.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 11.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 11.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 11.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 53.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 53.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 53.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,52.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,61.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,61.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,61.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,61.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_6, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,67.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,67.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_7, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,67.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,67.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,49.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,49.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_8, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,49.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,49.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,40.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,40.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_9, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,40.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,40.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,35.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_10, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,35.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_11, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_12, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,52.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,61.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,61.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,61.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,61.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_6, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,67.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,67.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_7, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,67.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,67.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,49.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,49.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_8, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,49.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,49.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,40.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,40.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_9, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_2_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,40.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,40.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,35.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_10, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,35.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_11, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_12, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,76.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,76.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,76.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_1_Ceiling,!- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_1_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_1_Ceiling,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Lobby_ZN_1_FLR_2_Ceiling,!- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_1_Wall_4A, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,11.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,11.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,11.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,11.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_6, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_5, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_2_Wall_4A, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,11.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,11.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,11.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,11.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_5, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,5.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_6, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Corridor_Pod_3_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,5.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,5.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Floor,!- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_2_Floor,!- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Lobby_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Floor,!- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,14.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Offices_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,14.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,14.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Aux_Gym_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,52.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Offices_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Aux_Gym_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,52.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Gym_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000000000,0.000000000000,8.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,0.000000000000,8.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.000000000000,0.000000000000,8.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,52.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,52.000000000000,8.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Floor,!- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,52.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + LIBRARY_MEDIA_CENTER_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,52.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,52.0000,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,52.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Cafeteria_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.000000000000,26.000000000000,8.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 38.000000000000,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,26.000000000000,8.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000000000,15.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,15.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,0.000000000000,4.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + LIBRARY_MEDIA_CENTER_Wall_4_B, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,26.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000000000,15.000000000000,8.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,15.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,0.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,0.000000000000,8.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,26.0000,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,26.0000,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Aux_Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Cafeteria_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Floor,!- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Kitchen_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + LIBRARY_MEDIA_CENTER_Floor_A, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Aux_Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,35.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_4_A, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Floor_A, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,35.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,35.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,35.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,35.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_4_B, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,35.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + LIBRARY_MEDIA_CENTER_Floor_B, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Cafeteria_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,35.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 24.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 24.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,26.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + LIBRARY_MEDIA_CENTER_Floor_B, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 24.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 24.0000,26.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,26.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Kitchen_ZN_1_FLR_1_Wall_4, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_1_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_1_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Floor, !- Name + Floor, !- Surface Type + ext_slab_6in_with_carpet,!- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_1_Ceiling, !- Name + Ceiling, !- Surface Type + int_slab_ceiling, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_2_Floor, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Wall_1, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Gym_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Wall_2, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + LIBRARY_MEDIA_CENTER_Wall_4_A, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 38.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Wall_3, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Auditorium_ZN_1_FLR_2_Wall_1, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 38.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Wall_4, !- Name + Wall, !- Surface Type + int_wall, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Main_Corridor_ZN_1_FLR_2_Wall_3, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 0.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Floor, !- Name + Floor, !- Surface Type + int_slab_floor, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Surface, !- Outside Boundary Condition + Mech_ZN_1_FLR_1_Ceiling, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,9.0000,0.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,0.0000,0.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,0.0000,0.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Mech_ZN_1_FLR_2_Ceiling, !- Name + Roof, !- Surface Type + nonres_roof, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + AutoCalculate, !- View Factor to Ground + 4, !- Number of Vertices + 0.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 1 {m} + 38.0000,0.0000,4.0000, !- X,Y,Z ==> Vertex 2 {m} + 38.0000,9.0000,4.0000, !- X,Y,Z ==> Vertex 3 {m} + 0.0000,9.0000,4.0000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_2_Wall_4A, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_2_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000000000,26.000000000000,8.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,26.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,15.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,15.000000000000,8.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_4A, !- Name + Wall, !- Surface Type + nonres_ext_wall, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone Name + Surface, !- Outside Boundary Condition + Bathrooms_ZN_1_FLR_1_Wall_2, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 0.0, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000000000,26.000000000000,4.000000000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,15.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,15.000000000000,4.000000000000; !- X,Y,Z ==> Vertex 4 {m} + + WindowProperty:FrameAndDivider, + Skylight_Frame, !- Name + 0, !- Frame Width {m} + , !- Frame Outside Projection {m} + , !- Frame Inside Projection {m} + 0, !- Frame Conductance {W/m2-K} + 1, !- Ratio of Frame-Edge Glass Conductance to Center-Of-Glass Conductance + 0.7, !- Frame Solar Absorptance + 0.7, !- Frame Visible Absorptance + 0.9, !- Frame Thermal Hemispherical Emissivity + , !- Divider Type + , !- Divider Width {m} + , !- Number of Horizontal Dividers + , !- Number of Vertical Dividers + , !- Divider Outside Projection {m} + , !- Divider Inside Projection {m} + , !- Divider Conductance {W/m2-K} + 1, !- Ratio of Divider-Edge Glass Conductance to Center-Of-Glass Conductance + , !- Divider Solar Absorptance + , !- Divider Visible Absorptance + 0.9; !- Divider Thermal Hemispherical Emissivity + +!- =========== ALL OBJECTS IN CLASS: FENESTRATIONSURFACE:DETAILED =========== + !- This block has been added for IECC analysis, to reduce the current wwr from 35% to 30%. + !- It handles the construction of windows in acordance to the specified wwr + !- wwr is specified through the parm file + !- WWR = 30% for IECC 2012. WWR = 35% f0r 90.1 2004, 2007, 2010, 2013 and IECC 2006, 2009 + !- window_height = (Wall.Width * Wall.Height) *$wwr)/Window.Width + !- The bottom vertex is constant at 1.1 + !- Top vertex is modified to reflect the WWR specified. + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 1.269200000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 1.269200000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 10.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 10.950,0.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 52.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 52.950,0.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_1_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_1_ZN_1_FLR_2_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950,9.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 10.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950,9.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 52.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 10.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 10.950,0.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 52.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 52.950,0.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_1_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_2_ZN_1_FLR_2_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950,9.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 10.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950,9.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 52.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 10.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 10.950,0.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 52.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 52.950,0.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_1_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corridor_Pod_3_ZN_1_FLR_2_Wall_6_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2_Wall_6, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,4.9500,2.52856, !- X,Y,Z ==> Vertex 1 {m} + 0.000,4.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.52856; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950,9.0000,2.512845, !- X,Y,Z ==> Vertex 1 {m} + 10.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.512845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,8.9500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 0.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,0.0500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950,9.0000,2.50266, !- X,Y,Z ==> Vertex 1 {m} + 52.950,9.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,9.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,9.0000,2.50266; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_7_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_2_Wall_7, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,66.9500,2.507805, !- X,Y,Z ==> Vertex 1 {m} + 0.000,66.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,49.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,49.0500,2.507805; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_2_Wall_11_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_2_Wall_11, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000,25.9500,2.508295, !- X,Y,Z ==> Vertex 1 {m} + 0.000,25.9500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.000,9.0500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.000,9.0500,2.508295; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Lobby_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.50938, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 14.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 14.950,0.0000,2.50938; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Bathrooms_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 15.000,11.0500,2.548265, !- X,Y,Z ==> Vertex 1 {m} + 15.000,11.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 15.000,13.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 15.000,13.9500,2.548265; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Bathrooms_ZN_1_FLR_1_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Bathrooms_ZN_1_FLR_1_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 14.950,14.0000,2.50938, !- X,Y,Z ==> Vertex 1 {m} + 14.950,14.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,14.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,14.0000,2.50938; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Bathrooms_ZN_1_FLR_2_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 15.000,11.0500,2.548265, !- X,Y,Z ==> Vertex 1 {m} + 15.000,11.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 15.000,13.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 15.000,13.9500,2.548265; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Bathrooms_ZN_1_FLR_2_Wall_4_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Bathrooms_ZN_1_FLR_2_Wall_4, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 14.950,14.0000,2.50938, !- X,Y,Z ==> Vertex 1 {m} + 14.950,14.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,14.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,14.0000,2.50938; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_2_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 38.000,0.0500,2.51008, !- X,Y,Z ==> Vertex 1 {m} + 38.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 38.000,13.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 38.000,13.9500,2.51008; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_2_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050,0.0000,2.50371, !- X,Y,Z ==> Vertex 1 {m} + 0.050,0.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 37.950,0.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 37.950,0.0000,2.50371; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_2_Wall_2_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_2_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 38.000,0.0500,2.51008, !- X,Y,Z ==> Vertex 1 {m} + 38.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 38.000,13.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 38.000,13.9500,2.51008; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_1, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_2, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_3, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_4, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_5, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_6, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_7, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_8, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_9, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_10, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_11, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_12, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_13, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_14, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_15, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_16, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_17, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_18, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_19, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_20, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_21, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_22, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_23, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_24, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_25, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_26, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_27, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_28, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_29, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_30, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_31, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_32, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_33, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_34, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_35, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_36, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_37, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_38, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_39, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_40, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_41, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_42, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_43, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_44, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_45, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_46, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_47, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_48, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_49, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.5570,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.7760,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.7760,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.5570,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_50, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.8900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 10.1100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 10.1100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.8900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_51, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 15.2240,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 16.4430,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 16.4430,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 15.2240,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_52, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 21.5570,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 22.7760,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 22.7760,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 21.5570,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_53, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 27.8900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 29.1100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 29.1100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 27.8900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Gym_ZN_1_FLR_2_skylight_54, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 34.2240,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 35.4430,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 35.4430,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 34.2240,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_Wall_1_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,6.505845000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,3.694155720000, !- X,Y,Z ==> Vertex 2 {m} + 23.950000000000,0.000000000000,3.694155720000, !- X,Y,Z ==> Vertex 3 {m} + 23.950000000000,0.000000000000,6.505845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_Wall_2_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.000000000000,0.050000000000,6.502695000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,0.050000000000,3.697305320000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,51.950000000000,3.697305320000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,51.950000000000,6.502695000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_1, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_2, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_3, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_4, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,2.2793,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,2.2793,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,3.4985,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,3.4985,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_5, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_6, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_7, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_8, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,8.0571,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,8.0571,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,9.2763,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,9.2763,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_9, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_10, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_11, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_12, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,13.8348,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,13.8348,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,15.0540,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,15.0540,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_13, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_14, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_15, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_16, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,19.6126,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,19.6126,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,20.8318,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,20.8318,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_17, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_18, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_19, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_20, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,25.3904,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,25.3904,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,26.6096,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,26.6096,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_21, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_22, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_23, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_24, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,31.1682,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,31.1682,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,32.3874,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,32.3874,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_25, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_26, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_27, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_28, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,36.9460,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,36.9460,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,38.1652,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,38.1652,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_29, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_30, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_31, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_32, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,42.7237,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,42.7237,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,43.9429,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,43.9429,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_33, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 2.3900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 3.6100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 3.6100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 2.3900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_34, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 8.3900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 9.6100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 9.6100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 8.3900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_35, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 14.3900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 15.6100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 15.6100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 14.3900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_2_skylight_36, !- Name + Window, !- Surface Type + Window_U_0.50_SHGC_0.40, !- Construction Name + Aux_Gym_ZN_1_FLR_2_Ceiling, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + Skylight_Frame, !- Frame and Divider Name + 1, !- Multiplier + 4, !- Number of Vertices + 20.3900,48.5015,8.0000, !- X,Y,Z ==> Vertex 1 {m} + 21.6100,48.5015,8.0000, !- X,Y,Z ==> Vertex 2 {m} + 21.6100,49.7207,8.0000, !- X,Y,Z ==> Vertex 3 {m} + 20.3900,49.7207,8.0000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Auditorium_ZN_1_FLR_2_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Auditorium_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 37.950000000000,26.000000000000,6.503710000000, !- X,Y,Z ==> Vertex 1 {m} + 37.950000000000,26.000000000000,3.696289320000, !- X,Y,Z ==> Vertex 2 {m} + 0.050000000000,26.000000000000,3.696289320000, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,26.000000000000,6.503710000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Kitchen_ZN_1_FLR_1_Wall_2_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Kitchen_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.000,0.0500,2.515715, !- X,Y,Z ==> Vertex 1 {m} + 24.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 24.000,8.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 24.000,8.9500,2.515715; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_2_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + LIBRARY_MEDIA_CENTER_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.000,0.0500,2.504025, !- X,Y,Z ==> Vertex 1 {m} + 24.000,0.0500,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 24.000,34.9500,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 24.000,34.9500,2.504025; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + LIBRARY_MEDIA_CENTER_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + LIBRARY_MEDIA_CENTER_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 23.950,35.0000,2.505845, !- X,Y,Z ==> Vertex 1 {m} + 23.950,35.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,35.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,35.0000,2.505845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_2_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Cafeteria_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.000000000000,2.488400000000,2.505390000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,2.488400000000,1.030581800000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,25.950000000000,1.030581800000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,25.950000000000,2.505390000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_3_window_1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Cafeteria_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 23.950,26.0000,2.505845, !- X,Y,Z ==> Vertex 1 {m} + 23.950,26.0000,1.1000, !- X,Y,Z ==> Vertex 2 {m} + 0.050,26.0000,1.1000, !- X,Y,Z ==> Vertex 3 {m} + 0.050,26.0000,2.505845; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950000000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 52.946281052104,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 2 {m} + 36.129358000000,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 3 {m} + 36.129358000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 16.870316000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 16.870316000000,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 2 {m} + 0.046281052104,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 34.910158000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 34.910158000000,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 2 {m} + 18.089516000000,9.000000000000,1.032334921692, !- X,Y,Z ==> Vertex 3 {m} + 18.089516000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + E0F1D7, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.964848810365,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.964848810365,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.050448810365,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.050448810365,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.937310775602,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.937310775602,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 17.022910775602,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 17.022910775602,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950000000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 10.950000000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 9.730800000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 9.730800000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 8.511600000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 8.511600000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 0.050000000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 9.550785477926,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 9.550785477926,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 8.636385477926,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 8.636385477926,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 1.269200000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 1.269200000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 2.488400000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 2.488400000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 10.950000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 10.950000000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 1.398532467657,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 1.398532467657,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 2.312932467657,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 2.312932467657,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 16.870642000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 16.870642000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 18.089842000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 18.089842000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 34.910484000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 34.910484000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 36.129684000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 36.129684000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 52.950000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 52.950000000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.013072523185,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.013072523185,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 17.927472523185,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 17.927472523185,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.082313839171,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.082313839171,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.996713839171,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.996713839171,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_7_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_7, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000000000000,66.950000000000,2.507805000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,66.950000000000,0.997104600000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,65.730800000000,0.997104600000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,65.730800000000,2.507805000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_7_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_7, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000000000000,64.511600000000,2.507805000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,64.511600000000,0.997104600000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,49.050000000000,0.997104600000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,49.050000000000,2.507805000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_7_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_7, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 0.000000000000,65.619022120667,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,65.619022120667,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,64.704622120667,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,64.704622120667,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950000000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 52.950000000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 36.129358000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 36.129358000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 16.870316000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 16.870316000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 0.050000000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 34.910158000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 34.910158000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 18.089516000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 18.089516000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.974093490326,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.974093490326,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.059693490326,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.059693490326,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.894566160676,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.894566160676,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 16.980166160676,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 16.980166160676,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950000000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 10.950000000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 9.730800000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 9.730800000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 8.511600000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 8.511600000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 0.050000000000,9.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 9.568830848560,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 9.568830848560,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 8.654430848560,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 8.654430848560,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 1.269200000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 1.269200000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 2.488400000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 2.488400000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 10.950000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 10.950000000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 1.406916852331,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 1.406916852331,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 2.321316852331,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 2.321316852331,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 16.870642000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 16.870642000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 18.089842000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 18.089842000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 34.910484000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 34.910484000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 36.129684000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 36.129684000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 52.950000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 52.950000000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.003699245889,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.003699245889,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 17.918099245889,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 17.918099245889,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.059394395452,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.059394395452,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.973794395452,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.973794395452,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_11_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_11, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000000000000,25.950000000000,2.508295000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,25.950000000000,0.990500600000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,24.730800000000,0.990500600000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,24.730800000000,2.508295000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_11_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_11, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.000000000000,23.511600000000,2.508295000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,23.511600000000,0.990500600000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,9.050000000000,0.990500600000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,9.050000000000,2.508295000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Main_Corridor_ZN_1_FLR_1_Wall_11_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Main_Corridor_ZN_1_FLR_1_Wall_11, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 0.000000000000,24.548016522461,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 0.000000000000,24.548016522461,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 0.000000000000,23.633616522461,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 0.000000000000,23.633616522461,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 52.950000000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 52.950000000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 36.129358000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 36.129358000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 34.910158000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 34.910158000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 18.089516000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 18.089516000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 16.870316000000,9.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 16.870316000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 0.050000000000,9.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.928864968800,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.928864968800,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.014464968800,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.014464968800,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.909611938943,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.909611938943,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 16.995211938943,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 16.995211938943,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 10.950000000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 10.952974650803,9.000000000000,0.922097867406, !- X,Y,Z ==> Vertex 2 {m} + 9.730800000000,9.000000000000,0.922097867406, !- X,Y,Z ==> Vertex 3 {m} + 9.730800000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 8.511600000000,9.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 8.511600000000,9.000000000000,0.922097867406, !- X,Y,Z ==> Vertex 2 {m} + 0.052974650803,9.000000000000,0.922097867406, !- X,Y,Z ==> Vertex 3 {m} + 0.050000000000,9.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 9.534616307740,9.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 9.534616307740,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 8.620216307740,9.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 8.620216307740,9.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 2.488400000000,0.000000000000,2.512845000000, !- X,Y,Z ==> Vertex 1 {m} + 2.488400000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 2 {m} + 10.950000000000,0.000000000000,0.922073000000, !- X,Y,Z ==> Vertex 3 {m} + 10.950000000000,0.000000000000,2.512845000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 1.460560414014,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 1.460560414014,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 2.374960414014,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 2.374960414014,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 16.870642000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 16.870642000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 18.089842000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 18.089842000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 34.910484000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 34.910484000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 36.129684000000,0.000000000000,2.502660000000, !- X,Y,Z ==> Vertex 1 {m} + 36.129684000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 2 {m} + 52.950000000000,0.000000000000,1.032232800000, !- X,Y,Z ==> Vertex 3 {m} + 52.950000000000,0.000000000000,2.502660000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 17.046287185038,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 17.046287185038,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 17.960687185038,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 17.960687185038,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 35.078713404626,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 35.078713404626,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 35.993113404626,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 35.993113404626,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Lobby_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.509380000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,0.974397000000, !- X,Y,Z ==> Vertex 2 {m} + 1.269200000000,0.000000000000,0.974397000000, !- X,Y,Z ==> Vertex 3 {m} + 1.269200000000,0.000000000000,2.509380000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Lobby_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 2.488400000000,0.000000000000,2.509380000000, !- X,Y,Z ==> Vertex 1 {m} + 2.488400000000,0.000000000000,0.974397000000, !- X,Y,Z ==> Vertex 2 {m} + 14.950000000000,0.000000000000,0.974397000000, !- X,Y,Z ==> Vertex 3 {m} + 14.950000000000,0.000000000000,2.509380000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Lobby_ZN_1_FLR_1_Wall_1_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Lobby_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 1.432569072681,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 1.432569072681,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 2.346969072681,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 2.346969072681,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 0.050000000000,0.000000000000,2.503710000000, !- X,Y,Z ==> Vertex 1 {m} + 0.050000000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 2 {m} + 11.870652000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 3 {m} + 11.870652000000,0.000000000000,2.503710000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1_Window2, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 13.089852000000,0.000000000000,2.503710000000, !- X,Y,Z ==> Vertex 1 {m} + 13.089852000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 2 {m} + 24.910504000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 3 {m} + 24.910504000000,0.000000000000,2.503710000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1_Window3, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Offices_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 26.129704000000,0.000000000000,2.503710000000, !- X,Y,Z ==> Vertex 1 {m} + 26.129704000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 2 {m} + 37.950000000000,0.000000000000,1.003480000000, !- X,Y,Z ==> Vertex 3 {m} + 37.950000000000,0.000000000000,2.503710000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Offices_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 12.080590785063,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 12.080590785063,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 12.994990785063,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 12.994990785063,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Offices_ZN_1_FLR_1_Wall_1_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Offices_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 25.077901800907,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 25.077901800907,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 25.992301800907,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 25.992301800907,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_1_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 5.724173020125,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 5.724173020125,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 6.638573020125,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 6.638573020125,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_1_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_1, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 18.149921734850,0.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 18.149921734850,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 19.064321734850,0.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 19.064321734850,0.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_2_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 24.000000000000,4.836663799402,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,4.836663799402,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,5.751063799402,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,5.751063799402,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_2_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 24.000000000000,23.526112987155,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,23.526112987155,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,24.440512987155,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,24.440512987155,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Aux_Gym_ZN_1_FLR_1_Wall_2_Door3, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Aux_Gym_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 24.000000000000,42.724661090036,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,42.724661090036,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,43.639061090036,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,43.639061090036,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_2_Window1, !- Name + Window, !- Surface Type + Window_U_0.40_SHGC_0.38, !- Construction Name + Cafeteria_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + AutoCalculate, !- View Factor to Ground + , !- Frame and Divider Name + 1.0000, !- Multiplier + 4, !- Number of Vertices + 24.000000000000,0.050000000000,2.505390000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,0.050000000000,1.030581800000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,1.269200000000,1.030581800000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,1.269200000000,2.505390000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Cafeteria_ZN_1_FLR_1_Wall_2_Door, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Cafeteria_ZN_1_FLR_1_Wall_2, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 24.000000000000,1.450055152782,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 24.000000000000,1.450055152782,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 24.000000000000,2.364455152782,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 24.000000000000,2.364455152782,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_3_Door1, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Auditorium_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 34.697551052816,26.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 34.697551052816,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 33.783151052816,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 33.783151052816,26.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_3_Door2, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Auditorium_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 21.001162625423,26.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 21.001162625423,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 20.086762625423,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 20.086762625423,26.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + + FenestrationSurface:Detailed, + Auditorium_ZN_1_FLR_1_Wall_3_Door3, !- Name + Door, !- Surface Type + Swinging Door_con, !- Construction Name + Auditorium_ZN_1_FLR_1_Wall_3, !- Building Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + 4, !- Number of Vertices + 6.249245224883,26.000000000000,2.133600000000, !- X,Y,Z ==> Vertex 1 {m} + 6.249245224883,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 2 {m} + 5.334845224883,26.000000000000,0.000000000000, !- X,Y,Z ==> Vertex 3 {m} + 5.334845224883,26.000000000000,2.133600000000; !- X,Y,Z ==> Vertex 4 {m} + +!- =========== ALL OBJECTS IN CLASS: INTERNALMASS =========== + + InternalMass, + Corner_Class_1_Pod_1_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_1_Pod_1_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_1_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_1_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_1_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_1_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_1_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_1_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_1_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_1_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_1_Pod_2_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_1_Pod_2_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_2_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_2_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_2_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_2_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_2_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_2_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_2_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_2_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_1_Pod_3_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_1_Pod_3_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_3_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_1_Pod_3_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_3_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corridor_Pod_3_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + 640.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_3_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Corner_Class_2_Pod_3_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + 198.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_3_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Mult_Class_2_Pod_3_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + 954.0000; !- Surface Area {m2} + + InternalMass, + Main_Corridor_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + 2280.0000; !- Surface Area {m2} + + InternalMass, + Main_Corridor_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + 2280.0000; !- Surface Area {m2} + + InternalMass, + Lobby_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + 420.0000; !- Surface Area {m2} + + InternalMass, + Lobby_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + 420.0000; !- Surface Area {m2} + + InternalMass, + Bathrooms_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + 420.0000; !- Surface Area {m2} + + InternalMass, + Bathrooms_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + 420.0000; !- Surface Area {m2} + + InternalMass, + Offices_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + 1064.0000; !- Surface Area {m2} + + InternalMass, + Offices_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + 1064.0000; !- Surface Area {m2} + + InternalMass, + Gym_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + 3952.0000; !- Surface Area {m2} + + InternalMass, + Aux_Gym_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + 2496.0000; !- Surface Area {m2} + + InternalMass, + Auditorium_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + 1976.0000; !- Surface Area {m2} + + InternalMass, + Kitchen_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + 432.0000; !- Surface Area {m2} + + InternalMass, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + 1680.0000; !- Surface Area {m2} + + InternalMass, + Cafeteria_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + 1248.0000; !- Surface Area {m2} + + InternalMass, + Mech_ZN_1_FLR_1_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + 684.0000; !- Surface Area {m2} + + InternalMass, + Mech_ZN_1_FLR_2_InternalMass_1, !- Name + InteriorFurnishings, !- Construction Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + 684.0000; !- Surface Area {m2} + +!- =========== ALL OBJECTS IN CLASS: PEOPLE =========== + + People, + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_1_ZN_1_FLR_1, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_1_ZN_1_FLR_2, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_2_ZN_1_FLR_1, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_2_ZN_1_FLR_2, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH_Extend, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_3_ZN_1_FLR_1, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corridor_Pod_3_ZN_1_FLR_2, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH_Extend, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 2.654, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Bathrooms_ZN_1_FLR_1, !- Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Bathrooms_ZN_1_FLR_2, !- Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Offices_ZN_1_FLR_1, !- Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH_Offices, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.579, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Offices_ZN_1_FLR_2, !- Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH_Offices, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 18.579, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Gym_ZN_1_FLR_1, !- Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH_Gym, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 3.096, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Aux_Gym_ZN_1_FLR_1, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH_Gym, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 3.096, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Auditorium_ZN_1_FLR_1, !- Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH_Auditorium, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 0.619, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Kitchen_ZN_1_FLR_1, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + 35, !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 9.289, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Cafeteria_ZN_1_FLR_1, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH_Cafeteria, !- Number of People Schedule Name + Area/Person, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + 0.929, !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mech_ZN_1_FLR_1, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + People, + Mech_ZN_1_FLR_2, !- Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_OCC_SCH, !- Number of People Schedule Name + People, !- Number of People Calculation Method + , !- Number of People + , !- People per Zone Floor Area {person/m2} + , !- Zone Floor Area per Person {m2/person} + 0.3000, !- Fraction Radiant + AUTOCALCULATE, !- Sensible Heat Fraction + ACTIVITY_SCH, !- Activity Level Schedule Name + , !- Carbon Dioxide Generation Rate {m3/s-W} + No, !- Enable ASHRAE 55 Comfort Warnings + ZoneAveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + WORK_EFF_SCH, !- Work Efficiency Schedule Name + ClothingInsulationSchedule, !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + CLOTHING_SCH, !- Clothing Insulation Schedule Name + AIR_VELO_SCH, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + +!- =========== ALL OBJECTS IN CLASS: LIGHTS =========== + + Lights, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Lights, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Lights, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Lights, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Lights, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_1_ZN_1_FLR_1_Lights, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_1_ZN_1_FLR_2_Lights, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Lights, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Lights, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Lights, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Lights, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Lights, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Lights, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Lights, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Lights, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_2_ZN_1_FLR_1_Lights, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_2_ZN_1_FLR_2_Lights, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Lights, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Lights, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Lights, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Lights, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Lights, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Lights, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Lights, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Lights, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_3_ZN_1_FLR_1_Lights, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corridor_Pod_3_ZN_1_FLR_2_Lights, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Lights, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Lights, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Lights, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Lights, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_CLASSROOM_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.902797584, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Main_Corridor_ZN_1_FLR_1_Lights, !- Name + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Main_Corridor_ZN_1_FLR_2_Lights, !- Name + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + BLDG_LIGHT_CORRIDOR_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.104180875, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Lobby_ZN_1_FLR_1_Lights, !- Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_LOBBYFLR1_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76391042, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Lobby_ZN_1_FLR_2_Lights, !- Name + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_LOBBYFLR1_SCH,!- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.76391042, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Bathrooms_ZN_1_FLR_1_Lights, !- Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_BATH_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.149323854, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Bathrooms_ZN_1_FLR_2_Lights, !- Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_BATH_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.149323854, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Offices_ZN_1_FLR_1_Lights, !- Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.01043669, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Offices_ZN_1_FLR_2_Lights, !- Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_OFFICE_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.01043669, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Gym_ZN_1_FLR_1_Lights, !- Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_GYM_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.381955209, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Aux_Gym_ZN_1_FLR_1_Lights, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_GYM_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 5.381955209, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Auditorium_ZN_1_FLR_1_Lights, !- Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.781263563, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Kitchen_ZN_1_FLR_1_Lights, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 11.40974504, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_Lights, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_LIBRARY_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.395850125, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Cafeteria_ZN_1_FLR_1_Lights, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.781263563, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mech_ZN_1_FLR_1_Lights, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.2257149, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + + Lights, + Mech_ZN_1_FLR_2_Lights, !- Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_LIGHT_SCH, !- Schedule Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.2257149, !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Return Air Fraction + 0.3700, !- Fraction Radiant + 0.2000, !- Fraction Visible + 1.0000, !- Fraction Replaceable + General, !- End-Use Subcategory + No; !- Return Air Fraction Calculated from Plenum Temperature + +!- =========== ALL OBJECTS IN CLASS: ELECTRICEQUIPMENT =========== + + ElectricEquipment, + Corner_Class_1_Pod_1_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_1_Pod_1_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_1_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_1_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_1_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_1_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_1_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_1_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_1_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_1_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_1_Pod_2_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_1_Pod_2_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_2_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_2_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_2_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_2_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_2_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_2_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_2_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_2_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_1_Pod_3_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_1_Pod_3_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_3_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_1_Pod_3_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 9540.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_3_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corridor_Pod_3_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1280.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_3_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Corner_Class_2_Pod_3_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 990.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_3_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4770.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mult_Class_2_Pod_3_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 9540.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Main_Corridor_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4560.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Main_Corridor_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4560.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Lobby_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 840.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Lobby_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 840.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Bathrooms_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 840.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Bathrooms_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 840.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Offices_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 5745.6000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Offices_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 5745.6000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Gym_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 9880.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Aux_Gym_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 6240.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Auditorium_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 4940.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Kitchen_ZN_1_FLR_1_MiscElec_Equip, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + KITCHEN_ELEC_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 47995.2000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.2500, !- Fraction Latent + 0.3000, !- Fraction Radiant + 0.2000, !- Fraction Lost + MiscElec; !- End-Use Subcategory + + ElectricEquipment, + Kitchen_ZN_1_FLR_1_Reach-in-Freezer, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + Always_on, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 915, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.2500, !- Fraction Radiant + 0.0000, !- Fraction Lost + Refrigeration; !- End-Use Subcategory + + ElectricEquipment, + Kitchen_ZN_1_FLR_1_Reach-in-Refrigerator, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + Always_on, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 570, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.2500, !- Fraction Radiant + 0.0000, !- Fraction Lost + Refrigeration; !- End-Use Subcategory + + ElectricEquipment, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_PlugMisc_Equip, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 8400.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Cafeteria_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + KITCHEN_ELEC_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 48004.3200, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mech_ZN_1_FLR_1_PlugMisc_Equip, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1368.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mech_ZN_1_FLR_2_PlugMisc_Equip, !- Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + BLDG_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 1368.0000, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mech_ZN_1_FLR_1_Elevators_Equip, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + BLDG_ELEVATORS, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 32109.8901098901, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + + ElectricEquipment, + Mech_ZN_1_FLR_1_Elevators_Lights_Fan, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + ELEV_LIGHT_FAN_SCH_ADD_DF, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 125, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.0000, !- Fraction Latent + 0.5000, !- Fraction Radiant + 0.0000, !- Fraction Lost + General; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: GASEQUIPMENT =========== + + GasEquipment, + Kitchen_ZN_1_FLR_1_MiscGas_Equip, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + KITCHEN_GAS_EQUIP_SCH, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 362577.6000, !- Design Level {W} + , !- Power per Zone Floor Area {W/m2} + , !- Power per Person {W/person} + 0.1000, !- Fraction Latent + 0.2000, !- Fraction Radiant + 0.7000, !- Fraction Lost + , !- Carbon Dioxide Generation Rate {m3/s-W} + MiscGas; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: DAYLIGHTING:DETAILED =========== + + Daylighting:Controls, + Gym_ZN_1_FLR_1_DaylCtrl, !- Name + Gym_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Gym_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Gym_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.5, !- Fraction of Zone Controlled by Reference Point 1 + 500, !- Illuminance Setpoint at Reference Point 1 {lux} + Gym_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.5, !- Fraction of Zone Controlled by Reference Point 2 + 500; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Gym_ZN_1_FLR_1_DaylRefPt1, !- Name + Gym_ZN_1_FLR_1, !- Zone Name + 19.0000, !- X-Coordinate of Reference Point {m} + 24, !- Y-Coordinate of Reference Point {m} + 0; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Gym_ZN_1_FLR_1_DaylRefPt2, !- Name + Gym_ZN_1_FLR_1, !- Zone Name + 2, !- X-Coordinate of Reference Point {m} + 24, !- Y-Coordinate of Reference Point {m} + 0; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Aux_Gym_ZN_1_FLR_1_DaylCtrl, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Aux_Gym_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Aux_Gym_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.5, !- Fraction of Zone Controlled by Reference Point 1 + 500, !- Illuminance Setpoint at Reference Point 1 {lux} + Aux_Gym_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.5, !- Fraction of Zone Controlled by Reference Point 2 + 500; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Aux_Gym_ZN_1_FLR_1_DaylRefPt1, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + 12.0000, !- X-Coordinate of Reference Point {m} + 24, !- Y-Coordinate of Reference Point {m} + 0; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Aux_Gym_ZN_1_FLR_1_DaylRefPt2, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone Name + 2, !- X-Coordinate of Reference Point {m} + 24, !- Y-Coordinate of Reference Point {m} + 0; !- Z-Coordinate of Reference Point {m} + +!- =========== ALL OBJECTS IN CLASS: DAYLIGHTING:CONTROLS =========== +! +! + + Daylighting:Controls, + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_1_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_1_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_2_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_2_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylCtrl, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylCtrl, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt1, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_3_ZN_1_FLR_1_DaylRefPt2, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + 7.619800, !- X-Coordinate of Reference Point {m} + 3.371100, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 6.031300, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_1_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylCtrl, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 270.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.56, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.2, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + 7.372900, !- X-Coordinate of Reference Point {m} + 5.628900, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Corner_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + 3.371100, !- X-Coordinate of Reference Point {m} + 2.968800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylCtrl, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.28, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt1, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 7.323600, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Mult_Class_2_Pod_3_ZN_1_FLR_2_DaylRefPt2, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + 26.500000, !- X-Coordinate of Reference Point {m} + 5.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Lobby_ZN_1_FLR_1_DaylCtrl, !- Name + Lobby_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Lobby_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Lobby_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.18, !- Fraction of Zone Controlled by Reference Point 1 + 300.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Lobby_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.18, !- Fraction of Zone Controlled by Reference Point 2 + 300.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Lobby_ZN_1_FLR_1_DaylRefPt1, !- Name + Lobby_ZN_1_FLR_1, !- Zone Name + 7.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Lobby_ZN_1_FLR_1_DaylRefPt2, !- Name + Lobby_ZN_1_FLR_1, !- Zone Name + 7.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Lobby_ZN_1_FLR_2_DaylCtrl, !- Name + Lobby_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Lobby_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Lobby_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.18, !- Fraction of Zone Controlled by Reference Point 1 + 300.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Lobby_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.18, !- Fraction of Zone Controlled by Reference Point 2 + 300.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Lobby_ZN_1_FLR_2_DaylRefPt1, !- Name + Lobby_ZN_1_FLR_2, !- Zone Name + 7.500000, !- X-Coordinate of Reference Point {m} + 1.676400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Lobby_ZN_1_FLR_2_DaylRefPt2, !- Name + Lobby_ZN_1_FLR_2, !- Zone Name + 7.500000, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Offices_ZN_1_FLR_1_DaylCtrl, !- Name + Offices_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Offices_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Offices_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.36, !- Fraction of Zone Controlled by Reference Point 1 + 375.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Offices_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.08, !- Fraction of Zone Controlled by Reference Point 2 + 375.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Offices_ZN_1_FLR_1_DaylRefPt1, !- Name + Offices_ZN_1_FLR_1, !- Zone Name + 18.998200, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Offices_ZN_1_FLR_1_DaylRefPt2, !- Name + Offices_ZN_1_FLR_1, !- Zone Name + 34.647200, !- X-Coordinate of Reference Point {m} + 7.010400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Offices_ZN_1_FLR_2_DaylCtrl, !- Name + Offices_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Offices_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 180.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Offices_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.36, !- Fraction of Zone Controlled by Reference Point 1 + 375.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Offices_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.08, !- Fraction of Zone Controlled by Reference Point 2 + 375.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Offices_ZN_1_FLR_2_DaylRefPt1, !- Name + Offices_ZN_1_FLR_2, !- Zone Name + 18.998200, !- X-Coordinate of Reference Point {m} + 3.352800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Offices_ZN_1_FLR_2_DaylRefPt2, !- Name + Offices_ZN_1_FLR_2, !- Zone Name + 34.647200, !- X-Coordinate of Reference Point {m} + 7.010400, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + Cafeteria_ZN_1_FLR_1_DaylCtrl, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Cafeteria_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Cafeteria_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.21, !- Fraction of Zone Controlled by Reference Point 1 + 300.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Cafeteria_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.15, !- Fraction of Zone Controlled by Reference Point 2 + 300.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Cafeteria_ZN_1_FLR_1_DaylRefPt1, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + 20.647200, !- X-Coordinate of Reference Point {m} + 13.000000, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Cafeteria_ZN_1_FLR_1_DaylRefPt2, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone Name + 12.000000, !- X-Coordinate of Reference Point {m} + 22.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:Controls, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylCtrl, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.21, !- Fraction of Zone Controlled by Reference Point 1 + 500.0, !- Illuminance Setpoint at Reference Point 1 {lux} + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.11, !- Fraction of Zone Controlled by Reference Point 2 + 500.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylRefPt1, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + 20.647200, !- X-Coordinate of Reference Point {m} + 17.500000, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_DaylRefPt2, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + 12.000000, !- X-Coordinate of Reference Point {m} + 31.647200, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + +! removed case related IF + + Daylighting:Controls, + Auditorium_ZN_1_FLR_1_DaylCtrl, !- Name + Auditorium_ZN_1_FLR_1, !- Zone Name + SplitFlux, !- Daylighting Method + , !- Availability Schedule Name + Stepped, !- Lighting Control Type + 0.3, !- Minimum Input Power Fraction for Continuous or ContinuousOff Dimming Control + 0.2, !- Minimum Light Output Fraction for Continuous or ContinuousOff Dimming Control + 3, !- Number of Stepped Control Steps + 1.0, !- Probability Lighting will be Reset When Needed in Manual Stepped Control + Auditorium_ZN_1_FLR_1_DaylRefPt1, !- Glare Calculation Daylighting Reference Point Name + 0.0, !- Glare Calculation Azimuth Angle of View Direction Clockwise from Zone y-Axis {deg} + 22.0, !- Maximum Allowable Discomfort Glare Index + , !- DElight Gridding Resolution {m2} + Auditorium_ZN_1_FLR_1_DaylRefPt1, !- Daylighting Reference Point 1 Name + 0.125, !- Fraction of Zone Controlled by Reference Point 1 + 375.0, !- Illuminance Setpoint at Reference Point 1 {lux} + Auditorium_ZN_1_FLR_1_DaylRefPt2, !- Daylighting Reference Point 2 Name + 0.125, !- Fraction of Zone Controlled by Reference Point 2 + 375.0; !- Illuminance Setpoint at Reference Point 2 {lux} + + Daylighting:ReferencePoint, + Auditorium_ZN_1_FLR_1_DaylRefPt1, !- Name + Auditorium_ZN_1_FLR_1, !- Zone Name + 9.500600, !- X-Coordinate of Reference Point {m} + 21.732800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + + Daylighting:ReferencePoint, + Auditorium_ZN_1_FLR_1_DaylRefPt2, !- Name + Auditorium_ZN_1_FLR_1, !- Zone Name + 28.500400, !- X-Coordinate of Reference Point {m} + 21.732800, !- Y-Coordinate of Reference Point {m} + 0.762000; !- Z-Coordinate of Reference Point {m} + +!- =========== ALL OBJECTS IN CLASS: ZONEINFILTRATION =========== + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_1_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_1_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_1_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_1_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_1_ZN_1_FLR_1_Infiltration, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_1_ZN_1_FLR_2_Infiltration, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 3.356864e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_1_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_1_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_1_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_1_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_2_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_2_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_2_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_2_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_2_ZN_1_FLR_1_Infiltration, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_2_ZN_1_FLR_2_Infiltration, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 3.356864e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_2_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_2_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_2_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_2_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_3_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_1_Pod_3_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_3_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_1_Pod_3_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_3_ZN_1_FLR_1_Infiltration, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corridor_Pod_3_ZN_1_FLR_2_Infiltration, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 3.356864e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_3_ZN_1_FLR_1_Infiltration, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Corner_Class_2_Pod_3_ZN_1_FLR_2_Infiltration, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00025432512, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_3_ZN_1_FLR_1_Infiltration, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mult_Class_2_Pod_3_ZN_1_FLR_2_Infiltration, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00017523968, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Main_Corridor_ZN_1_FLR_1_Infiltration, !- Name + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Main_Corridor_ZN_1_FLR_2_Infiltration, !- Name + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 8.477504e-05, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lobby_ZN_1_FLR_1_Infiltration, !- Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lobby_ZN_1_FLR_2_Infiltration, !- Name + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00012630912, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Lobby_ZN_1_FLR_1_Door_Infiltration, !- Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_Door_Opening_SCH, !- Schedule Name + Flow/Zone, !- Design Flow Rate Calculation Method + 5.114489639, !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + , !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 1.0, !- Constant Term Coefficient + 0.0, !- Temperature Term Coefficient + 0.0, !- Velocity Term Coefficient + 0.0; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Bathrooms_ZN_1_FLR_1_Infiltration, !- Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Bathrooms_ZN_1_FLR_2_Infiltration, !- Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00020254976, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Offices_ZN_1_FLR_1_Infiltration, !- Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Offices_ZN_1_FLR_2_Infiltration, !- Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00015987776, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Gym_ZN_1_FLR_1_Infiltration, !- Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Aux_Gym_ZN_1_FLR_1_Infiltration, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00018661888, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Auditorium_ZN_1_FLR_1_Infiltration, !- Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00019401536, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Kitchen_ZN_1_FLR_1_Infiltration, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2_Infiltration, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00012460224, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Cafeteria_ZN_1_FLR_1_Infiltration, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0.00056896, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + + ZoneInfiltration:DesignFlowRate, + Mech_ZN_1_FLR_2_Infiltration, !- Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + INFIL_SCH_PNNL, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Zone Floor Area {m3/s-m2} + 0, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0.0000, !- Constant Term Coefficient + 0.0000, !- Temperature Term Coefficient + 0.2240, !- Velocity Term Coefficient + 0.0000; !- Velocity Squared Term Coefficient + +!- =========== ALL OBJECTS IN CLASS: EXTERIOR:LIGHTS =========== + !- if (($Case =~ /determination2010/ && $Case =~ /STD2010/) || ($Case =~ /PI/)) { + + Exterior:Lights, + Exterior_Lights_a, !- Name + Exterior_lighting_schedule_a, !- Schedule Name + 441.8, !- Design Level {W} + AstronomicalClock, !- Control Option + General; !- End-Use Subcategory + + Exterior:Lights, + Exterior_Lights_b, !- Name + Exterior_lighting_schedule_b_2016, !- Schedule Name + 2994.5, !- Design Level {W} + AstronomicalClock, !- Control Option + General; !- End-Use Subcategory + + Exterior:Lights, + Exterior_Lights_c, !- Name + Exterior_lighting_schedule_c_2016, !- Schedule Name + 2973.7, !- Design Level {W} + AstronomicalClock, !- Control Option + General; !- End-Use Subcategory + + Schedule:Compact, + Exterior_lighting_schedule_a, !- Name + fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 06:00,0, !- Field 3 + Until: 24:00,1; !- Field 5 + + Schedule:Compact, + Exterior_lighting_schedule_b, !- Name + fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 06:00,0.7, !- Field 3 + Until: 24:00,1; !- Field 5 + + Schedule:Compact, + Exterior_lighting_schedule_a_IECC2015, !- Name + fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:Weekdays SummerDesignDay, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For:Saturdays, !- Field 9 + Until: 24:00,0, !- Field 10 + For:AllOtherDays, !- Field 12 + Until: 24:00,0; !- Field 13 + + Schedule:Compact, + Exterior_lighting_schedule_b_2016, !- Name + fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 06:00,0.5, !- Field 3 + Until: 24:00,1; !- Field 5 + + Schedule:Compact, + Exterior_lighting_schedule_c_2016, !- Name + fraction, !- Schedule Type Limits Name + Through:12/31, !- Field 1 + For:AllDays, !- Field 2 + Until: 06:00,0.5, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0.5; !- Field 7 + +!- =========== ALL OBJECTS IN CLASS: SIZING:PARAMETERS =========== + + Sizing:Parameters, + 1.2000, !- Heating Sizing Factor + 1.2000, !- Cooling Sizing Factor + 6; !- Timesteps in Averaging Window + +!- =========== ALL OBJECTS IN CLASS: SIZING:ZONE =========== +!***** Space Conditioning For Zone: Corner_Class_1_Pod_1_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_1_Pod_1_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_1_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_1_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_1_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_1_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_1_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_1_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_1_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_1_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_1_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_1_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_1_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_1_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_1_Pod_2_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_1_Pod_2_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_2_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_2_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_2_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_2_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_2_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_2_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_2_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_2_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_2_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_2_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_2_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_2_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_1_Pod_3_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_1_Pod_3_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_3_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_1_Pod_3_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_3_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_3_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_3_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corridor_Pod_3_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corridor_Pod_3_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corridor_Pod_3_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_3_ZN_1_FLR_1 ***** + + Sizing:Zone, + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Corner_Class_2_Pod_3_ZN_1_FLR_2 ***** + + Sizing:Zone, + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_3_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mult_Class_2_Pod_3_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00238745, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Main_Corridor_ZN_1_FLR_1 ***** + + Sizing:Zone, + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Main_Corridor_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Main_Corridor_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Main_Corridor_ZN_1_FLR_2 ***** + + Sizing:Zone, + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Main_Corridor_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Main_Corridor_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Lobby_ZN_1_FLR_1 ***** + + Sizing:Zone, + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Lobby_ZN_1_FLR_1,!- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Lobby_ZN_1_FLR_1,!- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Lobby_ZN_1_FLR_2 ***** + + Sizing:Zone, + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Lobby_ZN_1_FLR_2,!- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Lobby_ZN_1_FLR_2,!- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Bathrooms_ZN_1_FLR_1 ***** +! Cooling Minimum Air Flow input is used to make sure sufficient makeup air from VAV terminal box when transfer air is not used. + + Sizing:Zone, + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Bathrooms_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + +! Exhaust fan needs makeup air from either VAV terminal box supply or transfer air. The makeup air does not need to be outdoor air. + + DesignSpecification:OutdoorAir, + SZ DSOA Bathrooms_ZN_1_FLR_1, !- Name + Flow/area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Bathrooms_ZN_1_FLR_2 ***** +! Cooling Minimum Air Flow input is used to make sure sufficient makeup air from VAV terminal box when transfer air is not used. + + Sizing:Zone, + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Bathrooms_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + +! Exhaust fan needs makeup air from either VAV terminal box supply or transfer air. The makeup air does not need to be outdoor air. + + DesignSpecification:OutdoorAir, + SZ DSOA Bathrooms_ZN_1_FLR_2, !- Name + Flow/area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Offices_ZN_1_FLR_1 ***** + + Sizing:Zone, + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Offices_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Offices_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000431773, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Offices_ZN_1_FLR_2 ***** + + Sizing:Zone, + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Offices_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Offices_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000431773, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Gym_ZN_1_FLR_1 ***** + + Sizing:Zone, + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Gym_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Gym_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001523905, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Aux_Gym_ZN_1_FLR_1 ***** + + Sizing:Zone, + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Aux_Gym_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Aux_Gym_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001523905, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Auditorium_ZN_1_FLR_1 ***** + + Sizing:Zone, + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Auditorium_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Auditorium_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.004114542, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Kitchen_ZN_1_FLR_1 ***** + + Sizing:Zone, + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Kitchen_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDayWithLimit, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.254379672279695, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + +! the OA specification is needed because the kitchen is under single zone system. When transfer air is sufficient as makeup air, the kitchen system should provide ventilation per 62.1. + + DesignSpecification:OutdoorAir, + SZ DSOA Kitchen_ZN_1_FLR_1, !- Name + Maximum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001178183, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0.254379672279695; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 ***** + + Sizing:Zone, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000863546, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Cafeteria_ZN_1_FLR_1 ***** + + Sizing:Zone, + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Cafeteria_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Cafeteria_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.004724104, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mech_ZN_1_FLR_1 ***** + + Sizing:Zone, + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mech_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mech_ZN_1_FLR_1, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!***** Space Conditioning For Zone: Mech_ZN_1_FLR_2 ***** + + Sizing:Zone, + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12.8, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40.0, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.007, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA Mech_ZN_1_FLR_2, !- Design Specification Outdoor Air Object Name + 0.0, !- Zone Heating Sizing Factor + 0.0, !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + 0.0, !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + 0.0, !- Cooling Minimum Air Flow {m3/s} + 0.0, !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + 0.0, !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- 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} + + DesignSpecification:OutdoorAir, + SZ DSOA Mech_ZN_1_FLR_2, !- Name + Flow/Area, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + ; !- Outdoor Air Flow per Zone {m3/s} + +!- =========== ALL OBJECTS IN CLASS: SIZING:SYSTEM =========== + + Sizing:System, + VAV_POD_1, !- AirLoop Name + Sensible, !- Type of Load to Size On + 8.28963, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + VAV_POD_2, !- AirLoop Name + Sensible, !- Type of Load to Size On + 8.24508, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + VAV_POD_3, !- AirLoop Name + Sensible, !- Type of Load to Size On + 9.49289966666667, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + VAV_OTHER, !- AirLoop Name + Sensible, !- Type of Load to Size On + 3.34614666666667, !- Design Outdoor Air Flow Rate {m3/s} + 0.3000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 12.8000, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC_1:5, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC_2:6, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC_3:7, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC_4:8, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + + Sizing:System, + PSZ-AC_5:9, !- AirLoop Name + Sensible, !- Type of Load to Size On + AUTOSIZE, !- Design Outdoor Air Flow Rate {m3/s} + 1.0000, !- Central Heating Maximum System Air Flow Ratio + 7.0, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kgWater/kgDryAir} + 12.8000, !- Central Cooling Design Supply Air Temperature {C} + 40, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Type of Zone Sum to Use + No, !- 100% Outdoor Air in Cooling + No, !- 100% Outdoor Air in Heating + 0.007, !- 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.0, !- Cooling Supply Air Flow Rate {m3/s} + , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + , !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + DesignDay, !- Heating Supply Air Flow Rate Method + 0.0, !- Heating Supply Air Flow Rate {m3/s} + , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + , !- Heating Fraction of Autosized Heating Supply Air Flow Rate + , !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + , !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + ZoneSum, !- System Outdoor Air Method + 1.0, !- Zone Maximum Outdoor Air Fraction {dimensionless} + CoolingDesignCapacity, !- Cooling Design Capacity Method + autosize, !- Cooling Design Capacity {W} + , !- Cooling Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + autosize, !- Heating Design Capacity {W} + , !- Heating Design Capacity Per Floor Area {W/m2} + , !- Fraction of Autosized Heating Design Capacity + OnOff; !- Central Cooling Capacity Control Method + +!- =========== ALL OBJECTS IN CLASS: SIZING:PLANT =========== + + Sizing:Plant, + SHWSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 48.9, !- Design Loop Exit Temperature {C} + 5.0; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + HeatSys1, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82.0, !- Design Loop Exit Temperature {C} + 11.0; !- Loop Design Temperature Difference {deltaC} + + Sizing:Plant, + CoolSys1, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 6.67, !- Design Loop Exit Temperature {C} + 8.33; !- Loop Design Temperature Difference {deltaC} + +!- =========== ALL OBJECTS IN CLASS: ZONECONTROL:THERMOSTAT =========== + + ZoneControl:Thermostat, + Corner_Class_1_Pod_1_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_1_Pod_1_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_1_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_1_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_1_ZN_1_FLR_1 Thermostat, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_1_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_1_ZN_1_FLR_2 Thermostat, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_1_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_1_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_1_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_1_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_1_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_1_Pod_2_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_1_Pod_2_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_2_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_2_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_2_ZN_1_FLR_1 Thermostat, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_2_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_2_ZN_1_FLR_2 Thermostat, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_2_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_2_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_2_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_2_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_2_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_1_Pod_3_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_1_Pod_3_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_3_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_1_Pod_3_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_3_ZN_1_FLR_1 Thermostat, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_3_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corridor_Pod_3_ZN_1_FLR_2 Thermostat, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corridor_Pod_3_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_3_ZN_1_FLR_1 Thermostat, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Corner_Class_2_Pod_3_ZN_1_FLR_2 Thermostat, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_3_ZN_1_FLR_1 Thermostat, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mult_Class_2_Pod_3_ZN_1_FLR_2 Thermostat, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Main_Corridor_ZN_1_FLR_1 Thermostat, !- Name + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Main_Corridor_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Main_Corridor_ZN_1_FLR_2 Thermostat, !- Name + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Main_Corridor_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Lobby_ZN_1_FLR_1 Thermostat, !- Name + Lobby_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Lobby_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Lobby_ZN_1_FLR_2 Thermostat, !- Name + Lobby_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Lobby_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Bathrooms_ZN_1_FLR_1 Thermostat, !- Name + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Bathrooms_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Bathrooms_ZN_1_FLR_2 Thermostat, !- Name + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Bathrooms_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Offices_ZN_1_FLR_1 Thermostat, !- Name + Offices_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Offices_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Offices_ZN_1_FLR_2 Thermostat, !- Name + Offices_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Offices_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Gym_ZN_1_FLR_1 Thermostat, !- Name + Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Gym_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Aux_Gym_ZN_1_FLR_1 Thermostat, !- Name + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Aux_Gym_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Auditorium_ZN_1_FLR_1 Thermostat, !- Name + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Auditorium_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Kitchen_ZN_1_FLR_1 Thermostat, !- Name + Kitchen_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Kitchen_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Thermostat, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Cafeteria_ZN_1_FLR_1 Thermostat, !- Name + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Cafeteria_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mech_ZN_1_FLR_1 Thermostat, !- Name + Mech_ZN_1_FLR_1, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mech_ZN_1_FLR_1 DualSPSched; !- Control 1 Name + + ZoneControl:Thermostat, + Mech_ZN_1_FLR_2 Thermostat, !- Name + Mech_ZN_1_FLR_2, !- Zone or ZoneList Name + Dual Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type + Mech_ZN_1_FLR_2 DualSPSched; !- Control 1 Name + +!- =========== ALL OBJECTS IN CLASS: THERMOSTATSETPOINT:DUALSETPOINT =========== + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_1_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_1_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_1_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_1_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_1_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_1_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_1_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_1_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_1_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_1_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_2_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_2_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_2_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_2_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_2_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_2_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_2_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_2_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_2_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_2_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_3_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_1_Pod_3_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_3_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_1_Pod_3_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_3_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corridor_Pod_3_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_3_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Corner_Class_2_Pod_3_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_3_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mult_Class_2_Pod_3_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Main_Corridor_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Main_Corridor_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Lobby_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Lobby_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Bathrooms_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_Setback, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_setup; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Bathrooms_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_Setback, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_setup; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Offices_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Offices_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Gym_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Aux_Gym_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Auditorium_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Kitchen_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Cafeteria_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_YES_OPTIMUM, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_YES_OPTIMUM; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mech_ZN_1_FLR_1 DualSPSched, !- Name + HTGSETP_SCH_Setback, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_setup; !- Cooling Setpoint Temperature Schedule Name + + ThermostatSetpoint:DualSetpoint, + Mech_ZN_1_FLR_2 DualSPSched, !- Name + HTGSETP_SCH_Setback, !- Heating Setpoint Temperature Schedule Name + CLGSETP_SCH_setup; !- Cooling Setpoint Temperature Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:UNCONTROLLED =========== + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + Gym_ZN_1_FLR_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet, !- Air Inlet Node Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Outlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + , !- Design Specification Outdoor Air Object Name + ; !- Per Person Ventilation Rate Mode + + ZoneHVAC:AirDistributionUnit, + Gym_ZN_1_FLR_1 Direct Air ADU, !- Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + Gym_ZN_1_FLR_1 Direct Air, !- Air Terminal Name + , !- Nominal Upstream Leakage Fraction + , !- Constant Downstream Leakage Fraction + ; !- Design Specification Air Terminal Sizing Object Name + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + Aux_Gym_ZN_1_FLR_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet, !- Air Inlet Node Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Outlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + , !- Design Specification Outdoor Air Object Name + ; !- Per Person Ventilation Rate Mode + + ZoneHVAC:AirDistributionUnit, + Aux_Gym_ZN_1_FLR_1 Direct Air ADU, !- Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + Aux_Gym_ZN_1_FLR_1 Direct Air, !- Air Terminal Name + , !- Nominal Upstream Leakage Fraction + , !- Constant Downstream Leakage Fraction + ; !- Design Specification Air Terminal Sizing Object Name + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + Auditorium_ZN_1_FLR_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet, !- Air Inlet Node Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Outlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + , !- Design Specification Outdoor Air Object Name + ; !- Per Person Ventilation Rate Mode + + ZoneHVAC:AirDistributionUnit, + Auditorium_ZN_1_FLR_1 Direct Air ADU, !- Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + Auditorium_ZN_1_FLR_1 Direct Air, !- Air Terminal Name + , !- Nominal Upstream Leakage Fraction + , !- Constant Downstream Leakage Fraction + ; !- Design Specification Air Terminal Sizing Object Name + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + Kitchen_ZN_1_FLR_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet, !- Air Inlet Node Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Outlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + , !- Design Specification Outdoor Air Object Name + ; !- Per Person Ventilation Rate Mode + + ZoneHVAC:AirDistributionUnit, + Kitchen_ZN_1_FLR_1 Direct Air ADU, !- Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + Kitchen_ZN_1_FLR_1 Direct Air, !- Air Terminal Name + , !- Nominal Upstream Leakage Fraction + , !- Constant Downstream Leakage Fraction + ; !- Design Specification Air Terminal Sizing Object Name + + AirTerminal:SingleDuct:ConstantVolume:NoReheat, + Cafeteria_ZN_1_FLR_1 Direct Air, !- Name + ALWAYS_ON, !- Availability Schedule Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet, !- Air Inlet Node Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Outlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + , !- Design Specification Outdoor Air Object Name + ; !- Per Person Ventilation Rate Mode + + ZoneHVAC:AirDistributionUnit, + Cafeteria_ZN_1_FLR_1 Direct Air ADU, !- Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type + Cafeteria_ZN_1_FLR_1 Direct Air, !- Air Terminal Name + , !- Nominal Upstream Leakage Fraction + , !- Constant Downstream Leakage Fraction + ; !- Design Specification Air Terminal Sizing Object Name + +!- =========== ALL OBJECTS IN CLASS: AIRTERMINAL:SINGLEDUCT:VAV:REHEAT =========== +! This V6 comment applies to the following 41 "AirTerminal:SingleDuct:VAV:Reheat" objects + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.950338807664063, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.227868274105745, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.810321763508802, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.992314596167755, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.229855294478094, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.808148116608476, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.982530812567157, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.227294180697604, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 1, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.7, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Main_Corridor_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Main_Corridor_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.385235269037899, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Main_Corridor_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Main_Corridor_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.226852945177268, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Lobby_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Lobby_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Lobby_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.332601058680307, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Lobby_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Lobby_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Lobby_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Lobby_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Lobby_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Lobby_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Lobby_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Bathrooms_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Bathrooms_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Bathrooms_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Bathrooms_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Bathrooms_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Bathrooms_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Offices_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Offices_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Offices_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.344594638667384, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Offices_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Offices_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Offices_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Offices_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Offices_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.223877090571467, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Offices_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Offices_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.544613050629622, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mech_ZN_1_FLR_1 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mech_ZN_1_FLR_1 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mech_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mech_ZN_1_FLR_1 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mech_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + + AirTerminal:SingleDuct:VAV:Reheat, + Mech_ZN_1_FLR_2 VAV Box Component, !- Name + ALWAYS_ON, !- Availability Schedule Name + Mech_ZN_1_FLR_2 VAV Box Damper Node, !- Damper Air Outlet Node Name + Mech_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Air Inlet Node Name + AUTOSIZE, !- Maximum Air Flow Rate {m3/s} + Constant, !- Zone Minimum Air Flow Input Method + 0.2, !- Constant Minimum Air Flow Fraction + , !- Fixed Minimum Air Flow Rate {m3/s} + , !- Minimum Air Flow Fraction Schedule Name + Coil:Heating:Water, !- Reheat Coil Object Type + Mech_ZN_1_FLR_2 VAV Box Reheat Coil, !- Reheat Coil Name + AUTOSIZE, !- Maximum Hot Water or Steam Flow Rate {m3/s} + 0.0, !- Minimum Hot Water or Steam Flow Rate {m3/s} + Mech_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + 0.001, !- Convergence Tolerance + ReverseWithLimits, !- Damper Heating Action + , !- Maximum Flow per Zone Floor Area During Reheat {m3/s-m2} + 0.5, !- Maximum Flow Fraction During Reheat + 40; !- Maximum Reheat Air Temperature {C} + +! +! !- =========== ALL OBJECTS IN CLASS: ZONEHVAC:AIRDISTRIBUTIONUNIT =========== +! + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_1_ZN_1_FLR_1 VAV Box, !- Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_1_ZN_1_FLR_2 VAV Box, !- Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_2_ZN_1_FLR_1 VAV Box, !- Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_2_ZN_1_FLR_2 VAV Box, !- Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_3_ZN_1_FLR_1 VAV Box, !- Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corridor_Pod_3_ZN_1_FLR_2 VAV Box, !- Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Main_Corridor_ZN_1_FLR_1 VAV Box, !- Name + Main_Corridor_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Main_Corridor_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Main_Corridor_ZN_1_FLR_2 VAV Box, !- Name + Main_Corridor_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Main_Corridor_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Lobby_ZN_1_FLR_1 VAV Box,!- Name + Lobby_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Lobby_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Lobby_ZN_1_FLR_2 VAV Box,!- Name + Lobby_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Lobby_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Bathrooms_ZN_1_FLR_1 VAV Box, !- Name + Bathrooms_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Bathrooms_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Bathrooms_ZN_1_FLR_2 VAV Box, !- Name + Bathrooms_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Bathrooms_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Offices_ZN_1_FLR_1 VAV Box, !- Name + Offices_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Offices_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Offices_ZN_1_FLR_2 VAV Box, !- Name + Offices_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Offices_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mech_ZN_1_FLR_1 VAV Box, !- Name + Mech_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mech_ZN_1_FLR_1 VAV Box Component; !- Air Terminal Name + + ZoneHVAC:AirDistributionUnit, + Mech_ZN_1_FLR_2 VAV Box, !- Name + Mech_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Distribution Unit Outlet Node Name + AirTerminal:SingleDuct:VAV:Reheat, !- Air Terminal Object Type + Mech_ZN_1_FLR_2 VAV Box Component; !- Air Terminal Name + +!- =========== ALL OBJECTS IN CLASS: ZONEHVAC:EQUIPMENTLIST =========== + + ZoneHVAC:EquipmentList, + Corner_Class_1_Pod_1_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_1_Pod_1_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_1_Pod_1_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_1_Pod_1_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box, !- 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, + Corridor_Pod_1_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_1_ZN_1_FLR_1 VAV Box, !- 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, + Corridor_Pod_1_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_1_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_2_Pod_1_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_2_Pod_1_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_2_Pod_1_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_2_Pod_1_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_1_Pod_2_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_1_Pod_2_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_1_Pod_2_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_1_Pod_2_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box, !- 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, + Corridor_Pod_2_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_2_ZN_1_FLR_1 VAV Box, !- 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, + Corridor_Pod_2_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_2_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_2_Pod_2_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_2_Pod_2_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_2_Pod_2_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_2_Pod_2_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_1_Pod_3_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_1_Pod_3_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_1_Pod_3_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_1_Pod_3_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box, !- 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, + Corridor_Pod_3_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_3_ZN_1_FLR_1 VAV Box, !- 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, + Corridor_Pod_3_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corridor_Pod_3_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_2_Pod_3_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box, !- 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, + Corner_Class_2_Pod_3_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box, !- 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, + Mult_Class_2_Pod_3_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box, !- 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, + Mult_Class_2_Pod_3_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box, !- 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, + Main_Corridor_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Main_Corridor_ZN_1_FLR_1 dummy Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Main_Corridor_ZN_1_FLR_1 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Main_Corridor_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Main_Corridor_ZN_1_FLR_2 dummy Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Main_Corridor_ZN_1_FLR_2 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Lobby_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Lobby_ZN_1_FLR_1 VAV Box,!- 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, + Lobby_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Lobby_ZN_1_FLR_2 VAV Box,!- 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, + Bathrooms_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Bathrooms_ZN_1_FLR_1 Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Bathrooms_ZN_1_FLR_1 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Bathrooms_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Bathrooms_ZN_1_FLR_2 Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Bathrooms_ZN_1_FLR_2 VAV Box, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Offices_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Offices_ZN_1_FLR_1 VAV Box, !- 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, + Offices_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Offices_ZN_1_FLR_2 VAV Box, !- 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, + Gym_ZN_1_FLR_1 Equipment,!- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + GYM_ZN_1_FLR_1 dummy Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Gym_ZN_1_FLR_1 Direct Air ADU, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Aux_Gym_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Aux_Gym_ZN_1_FLR_1 Direct Air ADU, !- 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, + Auditorium_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Auditorium_ZN_1_FLR_1 Direct Air ADU, !- 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, + Kitchen_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + Fan:ZoneExhaust, !- Zone Equipment 1 Object Type + Kitchen_ZN_1_FLR_1 Exhaust Fan, !- 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:AirDistributionUnit, !- Zone Equipment 2 Object Type + Kitchen_ZN_1_FLR_1 Direct Air ADU, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2, !- Zone Equipment 2 Heating or No-Load Sequence + , !- Zone Equipment 2 Sequential Cooling Fraction Schedule Name + ; !- Zone Equipment 2 Sequential Heating Fraction Schedule Name + + ZoneHVAC:EquipmentList, + Cafeteria_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Cafeteria_ZN_1_FLR_1 Direct Air ADU, !- 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, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box, !- 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, + Mech_ZN_1_FLR_1 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mech_ZN_1_FLR_1 VAV Box, !- 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, + Mech_ZN_1_FLR_2 Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type + Mech_ZN_1_FLR_2 VAV Box, !- 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, + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_1_ZN_1_FLR_1, !- Zone Name + Corridor_Pod_1_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_1_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corridor_Pod_1_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_1_ZN_1_FLR_2, !- Zone Name + Corridor_Pod_1_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_1_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corridor_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_2_ZN_1_FLR_1, !- Zone Name + Corridor_Pod_2_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_2_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corridor_Pod_2_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_2_ZN_1_FLR_2, !- Zone Name + Corridor_Pod_2_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_2_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corridor_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_3_ZN_1_FLR_1, !- Zone Name + Corridor_Pod_3_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_3_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corridor_Pod_3_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corridor_Pod_3_ZN_1_FLR_2, !- Zone Name + Corridor_Pod_3_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corridor_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corridor_Pod_3_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corridor_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Main_Corridor_ZN_1_FLR_1,!- Zone Name + Main_Corridor_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Main_Corridor_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Main_Corridor_ZN_1_FLR_1 dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Main_Corridor_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Main_Corridor_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Main_Corridor_ZN_1_FLR_2,!- Zone Name + Main_Corridor_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Main_Corridor_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Main_Corridor_ZN_1_FLR_2 dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Main_Corridor_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Main_Corridor_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Lobby_ZN_1_FLR_1, !- Zone Name + Lobby_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Lobby_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Lobby_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Lobby_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Lobby_ZN_1_FLR_2, !- Zone Name + Lobby_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Lobby_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Lobby_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Lobby_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Bathrooms_ZN_1_FLR_1, !- Zone Name + Bathrooms_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Bathrooms_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Bathrooms_ZN_1_FLR_1 Exhaust Nodes, !- Zone Air Exhaust Node or NodeList Name + Bathrooms_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Bathrooms_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Bathrooms_ZN_1_FLR_2, !- Zone Name + Bathrooms_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Bathrooms_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Bathrooms_ZN_1_FLR_2 Exhaust Nodes, !- Zone Air Exhaust Node or NodeList Name + Bathrooms_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Bathrooms_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Offices_ZN_1_FLR_1, !- Zone Name + Offices_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Offices_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Offices_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Offices_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Offices_ZN_1_FLR_2, !- Zone Name + Offices_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Offices_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Offices_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + Offices_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Gym_ZN_1_FLR_1, !- Zone Name + Gym_ZN_1_FLR_1 Equipment,!- Zone Conditioning Equipment List Name + Gym_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + GYM_ZN_1_FLR_1 dummy Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Gym_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Gym_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Aux_Gym_ZN_1_FLR_1, !- Zone Name + Aux_Gym_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Aux_Gym_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Aux_Gym_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Aux_Gym_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Auditorium_ZN_1_FLR_1, !- Zone Name + Auditorium_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Auditorium_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Auditorium_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Auditorium_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Kitchen_ZN_1_FLR_1, !- Zone Name + Kitchen_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Kitchen_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + Kitchen_ZN_1_FLR_1 Exhaust Fan Node, !- Zone Air Exhaust Node or NodeList Name + Kitchen_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Kitchen_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2, !- Zone Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Air Node, !- Zone Air Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Cafeteria_ZN_1_FLR_1, !- Zone Name + Cafeteria_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Cafeteria_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Cafeteria_ZN_1_FLR_1 Air Node, !- Zone Air Node Name + Cafeteria_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mech_ZN_1_FLR_1, !- Zone Name + Mech_ZN_1_FLR_1 Equipment, !- Zone Conditioning Equipment List Name + Mech_ZN_1_FLR_1 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mech_ZN_1_FLR_1 Air Node,!- Zone Air Node Name + Mech_ZN_1_FLR_1 Return Air Node Name; !- Zone Return Air Node or NodeList Name + + ZoneHVAC:EquipmentConnections, + Mech_ZN_1_FLR_2, !- Zone Name + Mech_ZN_1_FLR_2 Equipment, !- Zone Conditioning Equipment List Name + Mech_ZN_1_FLR_2 Inlet Nodes, !- Zone Air Inlet Node or NodeList Name + , !- Zone Air Exhaust Node or NodeList Name + Mech_ZN_1_FLR_2 Air Node,!- Zone Air Node Name + Mech_ZN_1_FLR_2 Return Air Node Name; !- Zone Return Air Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: FAN:CONSTANTVOLUME =========== + + Fan:ConstantVolume, + PSZ-AC_1:5 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6006, !- Fan Total Efficiency + 1018.41, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.924, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Air Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC_2:6 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6006, !- Fan Total Efficiency + 1018.41, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.924, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Air Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC_3:7 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6006, !- Fan Total Efficiency + 1018.41, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.924, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Air Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC_4:8 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.58175, !- Fan Total Efficiency + 622.5, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.895, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Air Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:ConstantVolume, + PSZ-AC_5:9 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.58175, !- Fan Total Efficiency + 622.5, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + 0.895, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Air Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: FAN:VARIABLEVOLUME =========== + + Fan:VariableVolume, + VAV_POD_1 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6084, !- Fan Total Efficiency + 1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.936, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0408, !- Fan Power Coefficient 1 + 0.088, !- Fan Power Coefficient 2 + -0.0729, !- Fan Power Coefficient 3 + 0.9437, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Air Inlet Node Name + VAV_POD_1 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_POD_2 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.6084, !- Fan Total Efficiency + 1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.936, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0408, !- Fan Power Coefficient 1 + 0.088, !- Fan Power Coefficient 2 + -0.0729, !- Fan Power Coefficient 3 + 0.9437, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Air Inlet Node Name + VAV_POD_2 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_POD_3 Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.61165, !- Fan Total Efficiency + 1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.941, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0408, !- Fan Power Coefficient 1 + 0.088, !- Fan Power Coefficient 2 + -0.0729, !- Fan Power Coefficient 3 + 0.9437, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Air Inlet Node Name + VAV_POD_3 Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + + Fan:VariableVolume, + VAV_OTHER Fan, !- Name + HVACOperationSchd, !- Availability Schedule Name + 0.61425, !- Fan Total Efficiency + 1389.42, !- Pressure Rise {Pa} + AUTOSIZE, !- Maximum Flow Rate {m3/s} + Fraction, !- Fan Power Minimum Flow Rate Input Method + 0.25, !- Fan Power Minimum Flow Fraction + , !- Fan Power Minimum Air Flow Rate {m3/s} + 0.945, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + 0.0408, !- Fan Power Coefficient 1 + 0.088, !- Fan Power Coefficient 2 + -0.0729, !- Fan Power Coefficient 3 + 0.9437, !- Fan Power Coefficient 4 + 0, !- Fan Power Coefficient 5 + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Air Inlet Node Name + VAV_OTHER Supply Equipment Outlet Node, !- Air Outlet Node Name + Fan Energy; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: FAN:ZONEEXHAUST =========== + + Fan:ZoneExhaust, + Bathrooms_ZN_1_FLR_1 Exhaust Fan, !- Name + Hours_of_operation, !- Availability Schedule Name + 0.385, !- Fan Total Efficiency + 125.0000, !- Pressure Rise {Pa} + 0.283168466359586, !- Maximum Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_1 Exhaust Fan Node, !- Air Inlet Node Name + Bathrooms_ZN_1_FLR_1 Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + , !- Flow Fraction Schedule Name + , !- System Availability Manager Coupling Mode + , !- Minimum Zone Temperature Limit Schedule Name + Bathrooms_ZN_1_FLR_1 Exhaust Fan Balanced Exhaust Fraction Schedule; !- Balanced Exhaust Fraction Schedule Name + + Schedule:Compact, + Bathrooms_ZN_1_FLR_1 Exhaust Fan Balanced Exhaust Fraction Schedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0; !- Field 10 + + Fan:ZoneExhaust, + Main_Corridor_ZN_1_FLR_1 dummy Exhaust Fan, !- Name + Hours_of_operation, !- Availability Schedule Name + 1, !- Fan Total Efficiency + 0.0000001, !- Pressure Rise {Pa} + 0.283168466359586, !- Maximum Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_1 dummy Exhaust Fan Node, !- Air Inlet Node Name + Main_Corridor_ZN_1_FLR_1 dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans; !- End-Use Subcategory + + Fan:ZoneExhaust, + Bathrooms_ZN_1_FLR_2 Exhaust Fan, !- Name + Hours_of_operation, !- Availability Schedule Name + 0.385, !- Fan Total Efficiency + 125.0000, !- Pressure Rise {Pa} + 0.283168466359586, !- Maximum Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_2 Exhaust Fan Node, !- Air Inlet Node Name + Bathrooms_ZN_1_FLR_2 Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + , !- Flow Fraction Schedule Name + , !- System Availability Manager Coupling Mode + , !- Minimum Zone Temperature Limit Schedule Name + Bathrooms_ZN_1_FLR_2 Exhaust Fan Balanced Exhaust Fraction Schedule; !- Balanced Exhaust Fraction Schedule Name + + Schedule:Compact, + Bathrooms_ZN_1_FLR_2 Exhaust Fan Balanced Exhaust Fraction Schedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 07:00,0, !- Field 3 + Until: 21:00,1, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0; !- Field 10 + + Fan:ZoneExhaust, + Main_Corridor_ZN_1_FLR_2 dummy Exhaust Fan, !- Name + Hours_of_operation, !- Availability Schedule Name + 1, !- Fan Total Efficiency + 0.0000001, !- Pressure Rise {Pa} + 0.283168466359586, !- Maximum Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_2 dummy Exhaust Fan Node, !- Air Inlet Node Name + Main_Corridor_ZN_1_FLR_2 dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans; !- End-Use Subcategory + + Fan:ZoneExhaust, + Kitchen_ZN_1_FLR_1 Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 0.385, !- Fan Total Efficiency + 125.0000, !- Pressure Rise {Pa} + 2.54851619723628, !- Maximum Flow Rate {m3/s} + Kitchen_ZN_1_FLR_1 Exhaust Fan Node, !- Air Inlet Node Name + Kitchen_ZN_1_FLR_1 Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + , !- Flow Fraction Schedule Name + , !- System Availability Manager Coupling Mode + , !- Minimum Zone Temperature Limit Schedule Name + Kitchen_ZN_1_FLR_1 Exhaust Fan Balanced Exhaust Fraction Schedule; !- Balanced Exhaust Fraction Schedule Name + + Schedule:Compact, + Kitchen_ZN_1_FLR_1 Exhaust Fan Balanced Exhaust Fraction Schedule, !- Name + Fraction, !- Schedule Type Limits Name + Through: 6/30, !- Field 1 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 2 + Until: 08:00,0, !- Field 3 + Until: 17:00,0.900185185185185, !- Field 5 + Until: 24:00,0, !- Field 7 + For: WeekEnds Holidays AllOtherDays, !- Field 9 + Until: 24:00,0, !- Field 10 + Through: 9/1, !- Field 12 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 13 + Until: 08:00,0, !- Field 14 + Until: 17:00,0.900185185185185, !- Field 16 + Until: 21:00,0.900185185185185, !- Field 18 + Until: 24:00,0, !- Field 20 + For: WeekEnds Holidays AllOtherDays, !- Field 22 + Until: 24:00,0, !- Field 23 + Through: 12/31, !- Field 25 + For: Weekdays SummerDesignDay WinterDesignDay, !- Field 26 + Until: 08:00,0, !- Field 27 + Until: 16:00,0.900185185185185, !- Field 29 + Until: 21:00,0.900185185185185, !- Field 31 + Until: 24:00,0, !- Field 33 + For: WeekEnds Holidays AllOtherDays, !- Field 35 + Until: 24:00,0; !- Field 36 + + Fan:ZoneExhaust, + GYM_ZN_1_FLR_1 dummy Exhaust Fan, !- Name + Kitchen_Exhaust_SCH, !- Availability Schedule Name + 1, !- Fan Total Efficiency + 0.0000001, !- Pressure Rise {Pa} + 2.29413652495658, !- Maximum Flow Rate {m3/s} + GYM_ZN_1_FLR_1 dummy Exhaust Fan Node, !- Air Inlet Node Name + GYM_ZN_1_FLR_1 dummy Exhaust Fan Outlet Node Name, !- Air Outlet Node Name + Zone Exhaust Fans; !- End-Use Subcategory + +!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:WATER =========== + + Coil:Cooling:Water, + VAV_POD_1_CoolC, !- 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} + VAV_POD_1_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_1_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode, !- Air Inlet Node Name + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_POD_2_CoolC, !- 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} + VAV_POD_2_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_2_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode, !- Air Inlet Node Name + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_POD_3_CoolC, !- 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} + VAV_POD_3_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_3_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode, !- Air Inlet Node Name + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + + Coil:Cooling:Water, + VAV_OTHER_CoolC, !- 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} + VAV_OTHER_CoolCDemand Inlet Node, !- Water Inlet Node Name + VAV_OTHER_CoolCDemand Outlet Node, !- Water Outlet Node Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode, !- Air Inlet Node Name + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode, !- Air Outlet Node Name + SimpleAnalysis, !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +!- =========== ALL OBJECTS IN CLASS: COIL:COOLING:DX:SINGLESPEED =========== + + Coil:Cooling:DX:TwoSpeed, + PSZ-AC_1:5_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 80460.59, !- High Speed Gross Rated Total Cooling Capacity {W} + 0.79866, !- High Speed Rated Sensible Heat Ratio + 3.39928881549157, !- High Speed Gross Rated Cooling COP {W/W} + 4.86062, !- High Speed Rated Air Flow Rate {m3/s} + , !- Unit Internal Static Air Pressure {Pa} + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- Air Inlet Node Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- Air Outlet Node Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Part Load Fraction Correlation Curve Name + 40230.295, !- Low Speed Gross Rated Total Cooling Capacity {W} + 0.79866, !- Low Speed Gross Rated Sensible Heat Ratio + 3.39928881549157, !- Low Speed Gross Rated Cooling COP {W/W} + 3.24041333333333, !- Low Speed Rated Air Flow Rate {m3/s} + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + PSZ-AC_2:6_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 84425.96, !- High Speed Gross Rated Total Cooling Capacity {W} + 0.79866, !- High Speed Rated Sensible Heat Ratio + 3.39928881549157, !- High Speed Gross Rated Cooling COP {W/W} + 5.10017, !- High Speed Rated Air Flow Rate {m3/s} + , !- Unit Internal Static Air Pressure {Pa} + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- Air Inlet Node Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- Air Outlet Node Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Part Load Fraction Correlation Curve Name + 42212.98, !- Low Speed Gross Rated Total Cooling Capacity {W} + 0.79866, !- Low Speed Gross Rated Sensible Heat Ratio + 3.39928881549157, !- Low Speed Gross Rated Cooling COP {W/W} + 3.40011333333333, !- Low Speed Rated Air Flow Rate {m3/s} + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + PSZ-AC_3:7_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 82066.13, !- High Speed Gross Rated Total Cooling Capacity {W} + 0.79103, !- High Speed Rated Sensible Heat Ratio + 3.39928881549157, !- High Speed Gross Rated Cooling COP {W/W} + 4.85481, !- High Speed Rated Air Flow Rate {m3/s} + , !- Unit Internal Static Air Pressure {Pa} + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- Air Inlet Node Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- Air Outlet Node Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Part Load Fraction Correlation Curve Name + 41033.065, !- Low Speed Gross Rated Total Cooling Capacity {W} + 0.79103, !- Low Speed Gross Rated Sensible Heat Ratio + 3.39928881549157, !- Low Speed Gross Rated Cooling COP {W/W} + 3.23654, !- Low Speed Rated Air Flow Rate {m3/s} + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + PSZ-AC_4:8_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 41303.99, !- High Speed Gross Rated Total Cooling Capacity {W} + 0.79660, !- High Speed Rated Sensible Heat Ratio + 3.73224036438218, !- High Speed Gross Rated Cooling COP {W/W} + 2.48125, !- High Speed Rated Air Flow Rate {m3/s} + , !- Unit Internal Static Air Pressure {Pa} + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- Air Inlet Node Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- Air Outlet Node Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Part Load Fraction Correlation Curve Name + 20651.995, !- Low Speed Gross Rated Total Cooling Capacity {W} + 0.79660, !- Low Speed Gross Rated Sensible Heat Ratio + 3.73224036438218, !- Low Speed Gross Rated Cooling COP {W/W} + 1.65416666666667, !- Low Speed Rated Air Flow Rate {m3/s} + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + + Coil:Cooling:DX:TwoSpeed, + PSZ-AC_5:9_CoolC DXCoil, !- Name + ALWAYS_ON, !- Availability Schedule Name + 49830.54, !- High Speed Gross Rated Total Cooling Capacity {W} + 0.79103, !- High Speed Rated Sensible Heat Ratio + 3.73224036438218, !- High Speed Gross Rated Cooling COP {W/W} + 2.94784, !- High Speed Rated Air Flow Rate {m3/s} + , !- Unit Internal Static Air Pressure {Pa} + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- Air Inlet Node Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- Air Outlet Node Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Energy Input Ratio Function of Temperature Curve Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Part Load Fraction Correlation Curve Name + 24915.27, !- Low Speed Gross Rated Total Cooling Capacity {W} + 0.79103, !- Low Speed Gross Rated Sensible Heat Ratio + 3.73224036438218, !- Low Speed Gross Rated Cooling COP {W/W} + 1.96522666666667, !- Low Speed Rated Air Flow Rate {m3/s} + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Low Speed Total Cooling Capacity Function of Temperature Curve Name + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Low Speed Energy Input Ratio Function of Temperature Curve Name + ; !- Condenser Air Inlet Node Name + +!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:WATER =========== + + Coil:Heating:Water, + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Lobby_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Lobby_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Lobby_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Lobby_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Lobby_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Lobby_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Lobby_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Lobby_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Lobby_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Lobby_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Bathrooms_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Bathrooms_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Bathrooms_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Offices_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Offices_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Offices_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Offices_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Offices_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Offices_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Offices_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Offices_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Offices_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Offices_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mech_ZN_1_FLR_1 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mech_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mech_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mech_ZN_1_FLR_1 VAV Box Damper Node, !- Air Inlet Node Name + Mech_ZN_1_FLR_1 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + Mech_ZN_1_FLR_2 VAV Box Reheat Coil, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + Mech_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Water Inlet Node Name + Mech_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node, !- Water Outlet Node Name + Mech_ZN_1_FLR_2 VAV Box Damper Node, !- Air Inlet Node Name + Mech_ZN_1_FLR_2 VAV Box Outlet Node Name, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_POD_1_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_POD_1_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_1_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode, !- Air Inlet Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_POD_2_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_POD_2_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_2_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode, !- Air Inlet Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_POD_3_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_POD_3_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_POD_3_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode, !- Air Inlet Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + + Coil:Heating:Water, + VAV_OTHER_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + AUTOSIZE, !- U-Factor Times Area Value {W/K} + AUTOSIZE, !- Maximum Water Flow Rate {m3/s} + VAV_OTHER_HeatCDemand Inlet Node, !- Water Inlet Node Name + VAV_OTHER_HeatCDemand Outlet Node, !- Water Outlet Node Name + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode, !- Air Inlet Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Air Outlet Node Name + UFactorTimesAreaAndDesignWaterFlowRate, !- Performance Input Method + AUTOSIZE, !- Rated Capacity {W} + 82.2, !- Rated Inlet Water Temperature {C} + 12.8, !- Rated Inlet Air Temperature {C} + 71.1, !- Rated Outlet Water Temperature {C} + 40.0, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +!- =========== ALL OBJECTS IN CLASS: COIL:HEATING:GAS =========== + + Coil:Heating:Fuel, + PSZ-AC_1:5_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- Air Inlet Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Air Outlet Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC_2:6_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- Air Inlet Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Air Outlet Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC_3:7_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- Air Inlet Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Air Outlet Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC_4:8_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- Air Inlet Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Air Outlet Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode; !- Temperature Setpoint Node Name + + Coil:Heating:Fuel, + PSZ-AC_5:9_HeatC, !- Name + ALWAYS_ON, !- Availability Schedule Name + NaturalGas, !- Fuel Type + 0.8, !- Burner Efficiency + AUTOSIZE, !- Nominal Capacity {W} + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- Air Inlet Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Air Outlet Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode; !- Temperature Setpoint Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:UNITARYCOOLONLY =========== + + CoilSystem:Cooling:DX, + PSZ-AC_1:5_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + PSZ-AC_1:5_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC_2:6_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + PSZ-AC_2:6_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC_3:7_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + PSZ-AC_3:7_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC_4:8_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + PSZ-AC_4:8_CoolC DXCoil; !- Cooling Coil Name + + CoilSystem:Cooling:DX, + PSZ-AC_5:9_CoolC, !- Name + ALWAYS_ON, !- Availability Schedule Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- DX Cooling Coil System Inlet Node Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- DX Cooling Coil System Outlet Node Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- DX Cooling Coil System Sensor Node Name + Coil:Cooling:DX:TwoSpeed,!- Cooling Coil Object Type + PSZ-AC_5:9_CoolC DXCoil; !- Cooling Coil Name + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:WATERCOIL =========== + + Controller:WaterCoil, + VAV_POD_1_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode, !- Sensor Node Name + VAV_POD_1_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_POD_1_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Sensor Node Name + VAV_POD_1_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_POD_2_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode, !- Sensor Node Name + VAV_POD_2_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_POD_2_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Sensor Node Name + VAV_POD_2_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_POD_3_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode, !- Sensor Node Name + VAV_POD_3_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_POD_3_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Sensor Node Name + VAV_POD_3_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_OTHER_CoolC_Controller, !- Name + Temperature, !- Control Variable + Reverse, !- Action + Flow, !- Actuator Variable + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode, !- Sensor Node Name + VAV_OTHER_CoolCDemand Inlet Node, !- Actuator Node Name + , !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + + Controller:WaterCoil, + VAV_OTHER_HeatC_Controller, !- Name + Temperature, !- Control Variable + Normal, !- Action + Flow, !- Actuator Variable + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Sensor Node Name + VAV_OTHER_HeatCDemand Inlet Node, !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + AUTOSIZE, !- Maximum Actuated Flow {m3/s} + 0.0; !- Minimum Actuated Flow {m3/s} + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:OUTDOORAIR =========== + + Controller:OutdoorAir, + VAV_POD_1_OA_Controller, !- Name + VAV_POD_1_OARelief Node, !- Relief Air Outlet Node Name + VAV_POD_1 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode, !- Mixed Air Node Name + VAV_POD_1_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + VAV_POD_1_MultiZone; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + VAV_POD_2_OA_Controller, !- Name + VAV_POD_2_OARelief Node, !- Relief Air Outlet Node Name + VAV_POD_2 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode, !- Mixed Air Node Name + VAV_POD_2_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + VAV_POD_2_MultiZone; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + VAV_POD_3_OA_Controller, !- Name + VAV_POD_3_OARelief Node, !- Relief Air Outlet Node Name + VAV_POD_3 Supply Equipment Inlet Node, !- Return Air Node Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode, !- Mixed Air Node Name + VAV_POD_3_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + VAV_POD_3_MultiZone; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + VAV_OTHER_OA_Controller, !- Name + VAV_OTHER_OARelief Node, !- Relief Air Outlet Node Name + VAV_OTHER Supply Equipment Inlet Node, !- Return Air Node Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode, !- Mixed Air Node Name + VAV_OTHER_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + , !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + VAV_OTHER_MultiZone; !- Mechanical Ventilation Controller Name + + Controller:OutdoorAir, + PSZ-AC_1:5_OA_Controller,!- Name + PSZ-AC_1:5_OARelief Node,!- Relief Air Outlet Node Name + PSZ-AC_1:5 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- Mixed Air Node Name + PSZ-AC_1:5_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + PSZ1_5_Timestep_Econ_Eff_SCH; !- Maximum Fraction of Outdoor Air Schedule Name + + Controller:OutdoorAir, + PSZ-AC_2:6_OA_Controller,!- Name + PSZ-AC_2:6_OARelief Node,!- Relief Air Outlet Node Name + PSZ-AC_2:6 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- Mixed Air Node Name + PSZ-AC_2:6_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + PSZ2_6_Timestep_Econ_Eff_SCH, !- Maximum Fraction of Outdoor Air Schedule Name + Aux Gym Vent Control; !- Mechanical Ventilation Controller Name + + Controller:MechanicalVentilation, + Aux Gym Vent Control, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + ZoneSum, !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Aux_Gym_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + CM DSOA Aux_Gym_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name 1 + CM DSZAD Aux_Gym_ZN_1_FLR_1; !- Design Specification Zone Air Distribution Object Name 1 + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Aux_Gym_ZN_1_FLR_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + CM DSOA Aux_Gym_ZN_1_FLR_1, !- Name + Sum, !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0.001523905; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + Controller:OutdoorAir, + PSZ-AC_3:7_OA_Controller,!- Name + PSZ-AC_3:7_OARelief Node,!- Relief Air Outlet Node Name + PSZ-AC_3:7 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- Mixed Air Node Name + PSZ-AC_3:7_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + PSZ3_7_Timestep_Econ_Eff_SCH, !- Maximum Fraction of Outdoor Air Schedule Name + Auditorium VentControl; !- Mechanical Ventilation Controller Name + + Controller:MechanicalVentilation, + Auditorium VentControl, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + ZoneSum, !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Auditorium_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + CM DSOA Auditorium_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name 1 + CM DSZAD Auditorium_ZN_1_FLR_1; !- Design Specification Zone Air Distribution Object Name 1 + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Auditorium_ZN_1_FLR_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + CM DSOA Auditorium_ZN_1_FLR_1, !- Name + Sum, !- Outdoor Air Method + 0.002359604, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + +!- OA through the kitchen RTU PSZ-AC_4:8_OA_Controller is driven by the kitchen exhaust fan. + + Controller:OutdoorAir, + PSZ-AC_4:8_OA_Controller,!- Name + PSZ-AC_4:8_OARelief Node,!- Relief Air Outlet Node Name + PSZ-AC_4:8 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- Mixed Air Node Name + PSZ-AC_4:8_OAInlet Node, !- Actuator Node Name + AUTOSIZE, !- Minimum Outdoor Air Flow Rate {m3/s} + AUTOSIZE, !- Maximum Outdoor Air Flow Rate {m3/s} + DifferentialDryBulb, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + Kitchen_Exhaust_SCH, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + PSZ4_8_Timestep_Econ_Eff_SCH; !- Maximum Fraction of Outdoor Air Schedule Name + + !- Minimum Outdoor Air Flow Rate {m3/s} + + Controller:OutdoorAir, + PSZ-AC_5:9_OA_Controller,!- Name + PSZ-AC_5:9_OARelief Node,!- Relief Air Outlet Node Name + PSZ-AC_5:9 Supply Equipment Inlet Node, !- Return Air Node Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- Mixed Air Node Name + PSZ-AC_5:9_OAInlet Node, !- 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 + , !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + MinOA_MotorizedDamper_Sched, !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + PSZ5_9_Timestep_Econ_Eff_SCH, !- Maximum Fraction of Outdoor Air Schedule Name + Cafeteria Vent Control; !- Mechanical Ventilation Controller Name + + Controller:MechanicalVentilation, + Cafeteria Vent Control, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + ZoneSum, !- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Cafeteria_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + CM DSOA Cafeteria_ZN_1_FLR_1, !- Design Specification Outdoor Air Object Name 1 + CM DSZAD Cafeteria_ZN_1_FLR_1; !- Design Specification Zone Air Distribution Object Name 1 + + DesignSpecification:ZoneAirDistribution, + CM DSZAD Cafeteria_ZN_1_FLR_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + CM DSOA Cafeteria_ZN_1_FLR_1, !- Name + Sum, !- Outdoor Air Method + 0.003539405, !- Outdoor Air Flow per Person {m3/s-person} + 0.000914343; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:CONTROLLERLIST =========== + + AirLoopHVAC:ControllerList, + VAV_POD_1_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_POD_1_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_POD_1_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_POD_1_OA_Controllers,!- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_POD_1_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_POD_2_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_POD_2_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_POD_2_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_POD_2_OA_Controllers,!- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_POD_2_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_POD_3_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_POD_3_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_POD_3_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_POD_3_OA_Controllers,!- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_POD_3_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + VAV_OTHER_Controllers, !- Name + Controller:WaterCoil, !- Controller 1 Object Type + VAV_OTHER_CoolC_Controller, !- Controller 1 Name + Controller:WaterCoil, !- Controller 2 Object Type + VAV_OTHER_HeatC_Controller; !- Controller 2 Name + + AirLoopHVAC:ControllerList, + VAV_OTHER_OA_Controllers,!- Name + Controller:OutdoorAir, !- Controller 1 Object Type + VAV_OTHER_OA_Controller; !- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC_1:5_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC_1:5_OA_Controller;!- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC_2:6_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC_2:6_OA_Controller;!- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC_3:7_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC_3:7_OA_Controller;!- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC_4:8_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC_4:8_OA_Controller;!- Controller 1 Name + + AirLoopHVAC:ControllerList, + PSZ-AC_5:9_OA_Controllers, !- Name + Controller:OutdoorAir, !- Controller 1 Object Type + PSZ-AC_5:9_OA_Controller;!- Controller 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC =========== +!***** Air Loop: VAV_POD_1 ***** + + AirLoopHVAC, + VAV_POD_1, !- Name + VAV_POD_1_Controllers, !- Controller List Name + VAV_POD_1 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_POD_1 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_POD_1 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_POD_1 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_POD_1 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_POD_1 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: VAV_POD_2 ***** + + AirLoopHVAC, + VAV_POD_2, !- Name + VAV_POD_2_Controllers, !- Controller List Name + VAV_POD_2 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_POD_2 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_POD_2 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_POD_2 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_POD_2 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_POD_2 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: VAV_POD_3 ***** + + AirLoopHVAC, + VAV_POD_3, !- Name + VAV_POD_3_Controllers, !- Controller List Name + VAV_POD_3 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_POD_3 Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_POD_3 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_POD_3 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_POD_3 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_POD_3 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: VAV_OTHER ***** + + AirLoopHVAC, + VAV_OTHER, !- Name + VAV_OTHER_Controllers, !- Controller List Name + VAV_OTHER Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + VAV_OTHER Air Loop Branches, !- Branch List Name + , !- Connector List Name + VAV_OTHER Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + VAV_OTHER Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + VAV_OTHER Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + VAV_OTHER Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: PSZ-AC_1:5 ***** + + AirLoopHVAC, + PSZ-AC_1:5, !- Name + , !- Controller List Name + PSZ-AC_1:5 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC_1:5 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC_1:5 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC_1:5 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC_1:5 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC_1:5 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: PSZ-AC_2:6 ***** + + AirLoopHVAC, + PSZ-AC_2:6, !- Name + , !- Controller List Name + PSZ-AC_2:6 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC_2:6 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC_2:6 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC_2:6 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC_2:6 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC_2:6 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: PSZ-AC_3:7 ***** + + AirLoopHVAC, + PSZ-AC_3:7, !- Name + , !- Controller List Name + PSZ-AC_3:7 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC_3:7 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC_3:7 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC_3:7 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC_3:7 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC_3:7 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: PSZ-AC_4:8 ***** + + AirLoopHVAC, + PSZ-AC_4:8, !- Name + , !- Controller List Name + PSZ-AC_4:8 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC_4:8 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC_4:8 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC_4:8 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC_4:8 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC_4:8 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!***** Air Loop: PSZ-AC_5:9 ***** + + AirLoopHVAC, + PSZ-AC_5:9, !- Name + , !- Controller List Name + PSZ-AC_5:9 Availability Manager List, !- Availability Manager List Name + AUTOSIZE, !- Design Supply Air Flow Rate {m3/s} + PSZ-AC_5:9 Air Loop Branches, !- Branch List Name + , !- Connector List Name + PSZ-AC_5:9 Supply Equipment Inlet Node, !- Supply Side Inlet Node Name + PSZ-AC_5:9 Zone Equipment Outlet Node, !- Demand Side Outlet Node Name + PSZ-AC_5:9 Zone Equipment Inlet Node, !- Demand Side Inlet Node Names + PSZ-AC_5:9 Supply Equipment Outlet Node; !- Supply Side Outlet Node Names + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM:EQUIPMENTLIST =========== + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_POD_1_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_POD_1_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_Pod_2_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_Pod_2_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_Pod_3_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_Pod_3_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + VAV_OTHER_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + VAV_OTHER_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC_1:5_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC_1:5_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC_2:6_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC_2:6_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC_3:7_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC_3:7_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC_4:8_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC_4:8_OAMixing Box; !- Component 1 Name + + AirLoopHVAC:OutdoorAirSystem:EquipmentList, + PSZ-AC_5:9_OA_Equipment, !- Name + OutdoorAir:Mixer, !- Component 1 Object Type + PSZ-AC_5:9_OAMixing Box; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:OUTDOORAIRSYSTEM =========== + + AirLoopHVAC:OutdoorAirSystem, + VAV_POD_1_OA, !- Name + VAV_POD_1_OA_Controllers,!- Controller List Name + VAV_POD_1_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_POD_2_OA, !- Name + VAV_POD_2_OA_Controllers,!- Controller List Name + VAV_POD_2_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_POD_3_OA, !- Name + VAV_POD_3_OA_Controllers,!- Controller List Name + VAV_POD_3_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + VAV_OTHER_OA, !- Name + VAV_OTHER_OA_Controllers,!- Controller List Name + VAV_OTHER_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC_1:5_OA, !- Name + PSZ-AC_1:5_OA_Controllers, !- Controller List Name + PSZ-AC_1:5_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC_2:6_OA, !- Name + PSZ-AC_2:6_OA_Controllers, !- Controller List Name + PSZ-AC_2:6_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC_3:7_OA, !- Name + PSZ-AC_3:7_OA_Controllers, !- Controller List Name + PSZ-AC_3:7_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC_4:8_OA, !- Name + PSZ-AC_4:8_OA_Controllers, !- Controller List Name + PSZ-AC_4:8_OA_Equipment; !- Outdoor Air Equipment List Name + + AirLoopHVAC:OutdoorAirSystem, + PSZ-AC_5:9_OA, !- Name + PSZ-AC_5:9_OA_Controllers, !- Controller List Name + PSZ-AC_5:9_OA_Equipment; !- Outdoor Air Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:MIXER =========== + + OutdoorAir:Mixer, + VAV_POD_1_OAMixing Box, !- Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode, !- Mixed Air Node Name + VAV_POD_1_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_POD_1_OARelief Node, !- Relief Air Stream Node Name + VAV_POD_1 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + VAV_POD_2_OAMixing Box, !- Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode, !- Mixed Air Node Name + VAV_POD_2_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_POD_2_OARelief Node, !- Relief Air Stream Node Name + VAV_POD_2 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + VAV_POD_3_OAMixing Box, !- Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode, !- Mixed Air Node Name + VAV_POD_3_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_POD_3_OARelief Node, !- Relief Air Stream Node Name + VAV_POD_3 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + VAV_OTHER_OAMixing Box, !- Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode, !- Mixed Air Node Name + VAV_OTHER_OAInlet Node, !- Outdoor Air Stream Node Name + VAV_OTHER_OARelief Node, !- Relief Air Stream Node Name + VAV_OTHER Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC_1:5_OAMixing Box, !- Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- Mixed Air Node Name + PSZ-AC_1:5_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC_1:5_OARelief Node,!- Relief Air Stream Node Name + PSZ-AC_1:5 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC_2:6_OAMixing Box, !- Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- Mixed Air Node Name + PSZ-AC_2:6_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC_2:6_OARelief Node,!- Relief Air Stream Node Name + PSZ-AC_2:6 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC_3:7_OAMixing Box, !- Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- Mixed Air Node Name + PSZ-AC_3:7_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC_3:7_OARelief Node,!- Relief Air Stream Node Name + PSZ-AC_3:7 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC_4:8_OAMixing Box, !- Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- Mixed Air Node Name + PSZ-AC_4:8_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC_4:8_OARelief Node,!- Relief Air Stream Node Name + PSZ-AC_4:8 Supply Equipment Inlet Node; !- Return Air Stream Node Name + + OutdoorAir:Mixer, + PSZ-AC_5:9_OAMixing Box, !- Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- Mixed Air Node Name + PSZ-AC_5:9_OAInlet Node, !- Outdoor Air Stream Node Name + PSZ-AC_5:9_OARelief Node,!- Relief Air Stream Node Name + PSZ-AC_5:9 Supply Equipment Inlet Node; !- Return Air Stream Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONESPLITTER =========== + + AirLoopHVAC:ZoneSplitter, + VAV_POD_1 Supply Air Splitter, !- Name + VAV_POD_1 Zone Equipment Inlet Node, !- Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 1 Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 5 Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 6 Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 7 Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 8 Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 9 Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Inlet Node Name; !- Outlet 10 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_POD_2 Supply Air Splitter, !- Name + VAV_POD_2 Zone Equipment Inlet Node, !- Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 1 Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 5 Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 6 Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 7 Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 8 Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 9 Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Inlet Node Name; !- Outlet 10 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_POD_3 Supply Air Splitter, !- Name + VAV_POD_3 Zone Equipment Inlet Node, !- Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 1 Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 5 Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 6 Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 7 Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 8 Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 9 Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Inlet Node Name; !- Outlet 10 Node Name + + AirLoopHVAC:ZoneSplitter, + VAV_OTHER Supply Air Splitter, !- Name + VAV_OTHER Zone Equipment Inlet Node, !- Inlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 1 Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 2 Node Name + Lobby_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 3 Node Name + Lobby_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 4 Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 5 Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 6 Node Name + Offices_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 7 Node Name + Offices_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 8 Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Inlet Node Name, !- Outlet 9 Node Name + Mech_ZN_1_FLR_1 VAV Box Inlet Node Name, !- Outlet 10 Node Name + Mech_ZN_1_FLR_2 VAV Box Inlet Node Name; !- Outlet 11 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC_1:5 Supply Air Splitter, !- Name + PSZ-AC_1:5 Zone Equipment Inlet Node, !- Inlet Node Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC_2:6 Supply Air Splitter, !- Name + PSZ-AC_2:6 Zone Equipment Inlet Node, !- Inlet Node Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC_3:7 Supply Air Splitter, !- Name + PSZ-AC_3:7 Zone Equipment Inlet Node, !- Inlet Node Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC_4:8 Supply Air Splitter, !- Name + PSZ-AC_4:8 Zone Equipment Inlet Node, !- Inlet Node Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet; !- Outlet 1 Node Name + + AirLoopHVAC:ZoneSplitter, + PSZ-AC_5:9 Supply Air Splitter, !- Name + PSZ-AC_5:9 Zone Equipment Inlet Node, !- Inlet Node Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name ATInlet; !- Outlet 1 Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:SUPPLYPATH =========== + + AirLoopHVAC:SupplyPath, + VAV_POD_1, !- Name + VAV_POD_1 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_POD_1 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_POD_2, !- Name + VAV_POD_2 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_POD_2 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_POD_3, !- Name + VAV_POD_3 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_POD_3 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + VAV_OTHER, !- Name + VAV_OTHER Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + VAV_OTHER Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC_1:5, !- Name + PSZ-AC_1:5 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC_1:5 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC_2:6, !- Name + PSZ-AC_2:6 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC_2:6 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC_3:7, !- Name + PSZ-AC_3:7 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC_3:7 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC_4:8, !- Name + PSZ-AC_4:8 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC_4:8 Supply Air Splitter; !- Component 1 Name + + AirLoopHVAC:SupplyPath, + PSZ-AC_5:9, !- Name + PSZ-AC_5:9 Zone Equipment Inlet Node, !- Supply Air Path Inlet Node Name + AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type + PSZ-AC_5:9 Supply Air Splitter; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:ZONEMIXER =========== + + AirLoopHVAC:ZoneMixer, + VAV_POD_1 Return Air Mixer, !- Name + VAV_POD_1 Zone Equipment Outlet Node, !- Outlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 Return Air Node Name, !- Inlet 1 Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 Return Air Node Name, !- Inlet 2 Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 Return Air Node Name, !- Inlet 3 Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 Return Air Node Name, !- Inlet 4 Node Name + Corridor_Pod_1_ZN_1_FLR_1 Return Air Node Name, !- Inlet 5 Node Name + Corridor_Pod_1_ZN_1_FLR_2 Return Air Node Name, !- Inlet 6 Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 Return Air Node Name, !- Inlet 7 Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 Return Air Node Name, !- Inlet 8 Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 Return Air Node Name, !- Inlet 9 Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 Return Air Node Name; !- Inlet 10 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_POD_2 Return Air Mixer, !- Name + VAV_POD_2 Zone Equipment Outlet Node, !- Outlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 Return Air Node Name, !- Inlet 1 Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 Return Air Node Name, !- Inlet 2 Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 Return Air Node Name, !- Inlet 3 Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 Return Air Node Name, !- Inlet 4 Node Name + Corridor_Pod_2_ZN_1_FLR_1 Return Air Node Name, !- Inlet 5 Node Name + Corridor_Pod_2_ZN_1_FLR_2 Return Air Node Name, !- Inlet 6 Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 Return Air Node Name, !- Inlet 7 Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 Return Air Node Name, !- Inlet 8 Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 Return Air Node Name, !- Inlet 9 Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 Return Air Node Name; !- Inlet 10 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_POD_3 Return Air Mixer, !- Name + VAV_POD_3 Zone Equipment Outlet Node, !- Outlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 Return Air Node Name, !- Inlet 1 Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 Return Air Node Name, !- Inlet 2 Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 Return Air Node Name, !- Inlet 3 Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 Return Air Node Name, !- Inlet 4 Node Name + Corridor_Pod_3_ZN_1_FLR_1 Return Air Node Name, !- Inlet 5 Node Name + Corridor_Pod_3_ZN_1_FLR_2 Return Air Node Name, !- Inlet 6 Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 Return Air Node Name, !- Inlet 7 Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 Return Air Node Name, !- Inlet 8 Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 Return Air Node Name, !- Inlet 9 Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 Return Air Node Name; !- Inlet 10 Node Name + + AirLoopHVAC:ZoneMixer, + VAV_OTHER Return Air Mixer, !- Name + VAV_OTHER Zone Equipment Outlet Node, !- Outlet Node Name + Main_Corridor_ZN_1_FLR_1 Return Air Node Name, !- Inlet 1 Node Name + Main_Corridor_ZN_1_FLR_2 Return Air Node Name, !- Inlet 2 Node Name + Lobby_ZN_1_FLR_1 Return Air Node Name, !- Inlet 3 Node Name + Lobby_ZN_1_FLR_2 Return Air Node Name, !- Inlet 4 Node Name + Bathrooms_ZN_1_FLR_1 Return Air Node Name, !- Inlet 5 Node Name + Bathrooms_ZN_1_FLR_2 Return Air Node Name, !- Inlet 6 Node Name + Offices_ZN_1_FLR_1 Return Air Node Name, !- Inlet 7 Node Name + Offices_ZN_1_FLR_2 Return Air Node Name, !- Inlet 8 Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Return Air Node Name, !- Inlet 9 Node Name + Mech_ZN_1_FLR_1 Return Air Node Name, !- Inlet 10 Node Name + Mech_ZN_1_FLR_2 Return Air Node Name; !- Inlet 11 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC_1:5 Return Air Mixer, !- Name + PSZ-AC_1:5 Zone Equipment Outlet Node, !- Outlet Node Name + Gym_ZN_1_FLR_1 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC_2:6 Return Air Mixer, !- Name + PSZ-AC_2:6 Zone Equipment Outlet Node, !- Outlet Node Name + Aux_Gym_ZN_1_FLR_1 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC_3:7 Return Air Mixer, !- Name + PSZ-AC_3:7 Zone Equipment Outlet Node, !- Outlet Node Name + Auditorium_ZN_1_FLR_1 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC_4:8 Return Air Mixer, !- Name + PSZ-AC_4:8 Zone Equipment Outlet Node, !- Outlet Node Name + Kitchen_ZN_1_FLR_1 Return Air Node Name; !- Inlet 1 Node Name + + AirLoopHVAC:ZoneMixer, + PSZ-AC_5:9 Return Air Mixer, !- Name + PSZ-AC_5:9 Zone Equipment Outlet Node, !- Outlet Node Name + Cafeteria_ZN_1_FLR_1 Return Air Node Name; !- Inlet 1 Node Name + +!- =========== ALL OBJECTS IN CLASS: AIRLOOPHVAC:RETURNPATH =========== + + AirLoopHVAC:ReturnPath, + VAV_POD_1 Return Air Path, !- Name + VAV_POD_1 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_POD_1 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_POD_2 Return Air Path, !- Name + VAV_POD_2 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_POD_2 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_POD_3 Return Air Path, !- Name + VAV_POD_3 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_POD_3 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + VAV_OTHER Return Air Path, !- Name + VAV_OTHER Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + VAV_OTHER Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC_1:5 Return Air Path, !- Name + PSZ-AC_1:5 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC_1:5 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC_2:6 Return Air Path, !- Name + PSZ-AC_2:6 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC_2:6 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC_3:7 Return Air Path, !- Name + PSZ-AC_3:7 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC_3:7 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC_4:8 Return Air Path, !- Name + PSZ-AC_4:8 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC_4:8 Return Air Mixer; !- Component 1 Name + + AirLoopHVAC:ReturnPath, + PSZ-AC_5:9 Return Air Path, !- Name + PSZ-AC_5:9 Zone Equipment Outlet Node, !- Return Air Path Outlet Node Name + AirLoopHVAC:ZoneMixer, !- Component 1 Object Type + PSZ-AC_5:9 Return Air Mixer; !- Component 1 Name + +!- =========== ALL OBJECTS IN CLASS: BRANCH =========== + + Branch, + VAV_POD_1 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_POD_1_OA, !- Component 1 Name + VAV_POD_1 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_POD_1_CoolC, !- Component 2 Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode, !- Component 2 Inlet Node Name + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_POD_1_HeatC, !- Component 3 Name + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode, !- Component 3 Inlet Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_POD_1 Fan, !- Component 4 Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Component 4 Inlet Node Name + VAV_POD_1 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_POD_2 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_POD_2_OA, !- Component 1 Name + VAV_POD_2 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_POD_2_CoolC, !- Component 2 Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode, !- Component 2 Inlet Node Name + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_POD_2_HeatC, !- Component 3 Name + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode, !- Component 3 Inlet Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_POD_2 Fan, !- Component 4 Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Component 4 Inlet Node Name + VAV_POD_2 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_POD_3 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_POD_3_OA, !- Component 1 Name + VAV_POD_3 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_POD_3_CoolC, !- Component 2 Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode, !- Component 2 Inlet Node Name + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_POD_3_HeatC, !- Component 3 Name + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode, !- Component 3 Inlet Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_POD_3 Fan, !- Component 4 Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Component 4 Inlet Node Name + VAV_POD_3 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + VAV_OTHER Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + VAV_OTHER_OA, !- Component 1 Name + VAV_OTHER Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode, !- Component 1 Outlet Node Name + Coil:Cooling:Water, !- Component 2 Object Type + VAV_OTHER_CoolC, !- Component 2 Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode, !- Component 2 Inlet Node Name + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Water, !- Component 3 Object Type + VAV_OTHER_HeatC, !- Component 3 Name + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode, !- Component 3 Inlet Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Component 3 Outlet Node Name + Fan:VariableVolume, !- Component 4 Object Type + VAV_OTHER Fan, !- Component 4 Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Component 4 Inlet Node Name + VAV_OTHER Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC_1:5 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC_1:5_OA, !- Component 1 Name + PSZ-AC_1:5 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC_1:5_CoolC, !- Component 2 Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC_1:5_HeatC, !- Component 3 Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC_1:5 Fan, !- Component 4 Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Component 4 Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC_2:6 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC_2:6_OA, !- Component 1 Name + PSZ-AC_2:6 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC_2:6_CoolC, !- Component 2 Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC_2:6_HeatC, !- Component 3 Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC_2:6 Fan, !- Component 4 Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Component 4 Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC_3:7 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC_3:7_OA, !- Component 1 Name + PSZ-AC_3:7 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC_3:7_CoolC, !- Component 2 Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC_3:7_HeatC, !- Component 3 Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC_3:7 Fan, !- Component 4 Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Component 4 Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC_4:8 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC_4:8_OA, !- Component 1 Name + PSZ-AC_4:8 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC_4:8_CoolC, !- Component 2 Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC_4:8_HeatC, !- Component 3 Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC_4:8 Fan, !- Component 4 Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Component 4 Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + PSZ-AC_5:9 Air Loop Main Branch, !- Name + , !- Pressure Drop Curve Name + AirLoopHVAC:OutdoorAirSystem, !- Component 1 Object Type + PSZ-AC_5:9_OA, !- Component 1 Name + PSZ-AC_5:9 Supply Equipment Inlet Node, !- Component 1 Inlet Node Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- Component 1 Outlet Node Name + CoilSystem:Cooling:DX, !- Component 2 Object Type + PSZ-AC_5:9_CoolC, !- Component 2 Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode, !- Component 2 Inlet Node Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- Component 2 Outlet Node Name + Coil:Heating:Fuel, !- Component 3 Object Type + PSZ-AC_5:9_HeatC, !- Component 3 Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode, !- Component 3 Inlet Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Component 3 Outlet Node Name + Fan:ConstantVolume, !- Component 4 Object Type + PSZ-AC_5:9 Fan, !- Component 4 Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Component 4 Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node; !- Component 4 Outlet Node Name + + Branch, + SHWSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + SHWSys1 Pump, !- Component 1 Name + SHWSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + WaterHeater:Mixed, !- Component 1 Object Type + SHWSys1 Water Heater, !- Component 1 Name + SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Component 1 Inlet Node Name + SHWSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + SHWSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Supply Outlet Pipe, !- Component 1 Name + SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + SHWSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Inlet Pipe, !- Component 1 Name + SHWSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Bathrooms_ZN_1_FLR_1 SHW_default, !- Component 1 Name + Bathrooms_ZN_1_FLR_1 SHW_default Water Inlet Node, !- Component 1 Inlet Node Name + Bathrooms_ZN_1_FLR_1 SHW_default Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Bathrooms_ZN_1_FLR_2 SHW_default, !- Component 1 Name + Bathrooms_ZN_1_FLR_2 SHW_default Water Inlet Node, !- Component 1 Inlet Node Name + Bathrooms_ZN_1_FLR_2 SHW_default Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + WaterUse:Connections, !- Component 1 Object Type + Kitchen_ZN_1_FLR_1 SHW_default, !- Component 1 Name + Kitchen_ZN_1_FLR_1 SHW_default Water Inlet Node, !- Component 1 Inlet Node Name + Kitchen_ZN_1_FLR_1 SHW_default Water Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Bypass Pipe, !- Component 1 Name + SHWSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + SHWSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + SHWSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + SHWSys1 Demand Outlet Pipe, !- Component 1 Name + SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + SHWSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + HeatSys1 Pump, !- Component 1 Name + HeatSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + Boiler:HotWater, !- Component 1 Object Type + HeatSys1 Boiler, !- Component 1 Name + HeatSys1 Pump-HeatSys1 BoilerNode, !- Component 1 Inlet Node Name + HeatSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Supply Outlet Pipe, !- Component 1 Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Inlet Pipe, !- Component 1 Name + HeatSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 5, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 6, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 7, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 8, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 9, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 10, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 11, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 12, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 13, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 14, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 15, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 16, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 17, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 18, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 19, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 20, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 21, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 22, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 23, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 24, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 25, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 26, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 27, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 28, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 29, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 30, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 31, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Main_Corridor_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 32, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Main_Corridor_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 33, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Lobby_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Lobby_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Lobby_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 34, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Lobby_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Lobby_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Lobby_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 35, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Bathrooms_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Bathrooms_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Bathrooms_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 36, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Bathrooms_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Bathrooms_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Bathrooms_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 37, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Offices_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Offices_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Offices_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 38, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Offices_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Offices_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Offices_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 39, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 40, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mech_ZN_1_FLR_1 VAV Box Reheat Coil, !- Component 1 Name + Mech_ZN_1_FLR_1 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mech_ZN_1_FLR_1 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 41, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + Mech_ZN_1_FLR_2 VAV Box Reheat Coil, !- Component 1 Name + Mech_ZN_1_FLR_2 VAV Box Reheat CoilDemand Inlet Node, !- Component 1 Inlet Node Name + Mech_ZN_1_FLR_2 VAV Box Reheat CoilDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 42, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_POD_1_HeatC, !- Component 1 Name + VAV_POD_1_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_1_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 43, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_POD_2_HeatC, !- Component 1 Name + VAV_POD_2_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_2_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 44, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_POD_3_HeatC, !- Component 1 Name + VAV_POD_3_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_3_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Load Branch 45, !- Name + , !- Pressure Drop Curve Name + Coil:Heating:Water, !- Component 1 Object Type + VAV_OTHER_HeatC, !- Component 1 Name + VAV_OTHER_HeatCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_OTHER_HeatCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Bypass Pipe, !- Component 1 Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Component 1 Inlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node; !- Component 1 Outlet Node Name + + Branch, + HeatSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + HeatSys1 Demand Outlet Pipe, !- Component 1 Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + HeatSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:ConstantSpeed, !- Component 1 Object Type + CoolSys1 Pump, !- Component 1 Name + CoolSys1 Supply Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Equipment Branch, !- Name + , !- Pressure Drop Curve Name + Chiller:Electric:EIR, !- Component 1 Object Type + CoolSys1 Chiller, !- Component 1 Name + CoolSys1 Pump-CoolSys1 ChillerNode, !- Component 1 Inlet Node Name + CoolSys1 Supply Equipment Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Equipment Bypass Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Equipment Bypass Pipe, !- Component 1 Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Supply Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Supply Outlet Pipe, !- Component 1 Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Supply Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Inlet Branch, !- Name + , !- Pressure Drop Curve Name + Pump:VariableSpeed, !- Component 1 Object Type + CoolSys1 Pump Secondary, !- Component 1 Name + CoolSys1 Demand Inlet Node, !- Component 1 Inlet Node Name + CoolSys1 Pump Secondary-CoolSys1 Demand Mixer; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 1, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_POD_1_CoolC, !- Component 1 Name + VAV_POD_1_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_1_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 2, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_POD_2_CoolC, !- Component 1 Name + VAV_POD_2_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_2_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 3, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_POD_3_CoolC, !- Component 1 Name + VAV_POD_3_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_POD_3_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Load Branch 4, !- Name + , !- Pressure Drop Curve Name + Coil:Cooling:Water, !- Component 1 Object Type + VAV_OTHER_CoolC, !- Component 1 Name + VAV_OTHER_CoolCDemand Inlet Node, !- Component 1 Inlet Node Name + VAV_OTHER_CoolCDemand Outlet Node; !- Component 1 Outlet Node Name + + Branch, + CoolSys1 Demand Outlet Branch, !- Name + , !- Pressure Drop Curve Name + Pipe:Adiabatic, !- Component 1 Object Type + CoolSys1 Demand Outlet Pipe, !- Component 1 Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Component 1 Inlet Node Name + CoolSys1 Demand Outlet Node; !- Component 1 Outlet Node Name + +!- =========== ALL OBJECTS IN CLASS: BRANCHLIST =========== + + BranchList, + VAV_POD_1 Air Loop Branches, !- Name + VAV_POD_1 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_POD_2 Air Loop Branches, !- Name + VAV_POD_2 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_POD_3 Air Loop Branches, !- Name + VAV_POD_3 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + VAV_OTHER Air Loop Branches, !- Name + VAV_OTHER Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC_1:5 Air Loop Branches, !- Name + PSZ-AC_1:5 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC_2:6 Air Loop Branches, !- Name + PSZ-AC_2:6 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC_3:7 Air Loop Branches, !- Name + PSZ-AC_3:7 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC_4:8 Air Loop Branches, !- Name + PSZ-AC_4:8 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + PSZ-AC_5:9 Air Loop Branches, !- Name + PSZ-AC_5:9 Air Loop Main Branch; !- Branch 1 Name + + BranchList, + SHWSys1 Supply Branches, !- Name + SHWSys1 Supply Inlet Branch, !- Branch 1 Name + SHWSys1 Supply Equipment Branch, !- Branch 2 Name + SHWSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + SHWSys1 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + SHWSys1 Demand Branches, !- Name + SHWSys1 Demand Inlet Branch, !- Branch 1 Name + SHWSys1 Demand Load Branch 1, !- Branch 2 Name + SHWSys1 Demand Load Branch 2, !- Branch 3 Name + SHWSys1 Demand Load Branch 3, !- Branch 4 Name + SHWSys1 Demand Bypass Branch, !- Branch 5 Name + SHWSys1 Demand Outlet Branch; !- Branch 6 Name + + BranchList, + HeatSys1 Supply Branches,!- Name + HeatSys1 Supply Inlet Branch, !- Branch 1 Name + HeatSys1 Supply Equipment Branch, !- Branch 2 Name + HeatSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + HeatSys1 Supply Outlet Branch; !- Branch 4 Name + + BranchList, + HeatSys1 Demand Branches,!- Name + HeatSys1 Demand Inlet Branch, !- Branch 1 Name + HeatSys1 Demand Load Branch 1, !- Branch 2 Name + HeatSys1 Demand Load Branch 2, !- Branch 3 Name + HeatSys1 Demand Load Branch 3, !- Branch 4 Name + HeatSys1 Demand Load Branch 4, !- Branch 5 Name + HeatSys1 Demand Load Branch 5, !- Branch 6 Name + HeatSys1 Demand Load Branch 6, !- Branch 7 Name + HeatSys1 Demand Load Branch 7, !- Branch 8 Name + HeatSys1 Demand Load Branch 8, !- Branch 9 Name + HeatSys1 Demand Load Branch 9, !- Branch 10 Name + HeatSys1 Demand Load Branch 10, !- Branch 11 Name + HeatSys1 Demand Load Branch 11, !- Branch 12 Name + HeatSys1 Demand Load Branch 12, !- Branch 13 Name + HeatSys1 Demand Load Branch 13, !- Branch 14 Name + HeatSys1 Demand Load Branch 14, !- Branch 15 Name + HeatSys1 Demand Load Branch 15, !- Branch 16 Name + HeatSys1 Demand Load Branch 16, !- Branch 17 Name + HeatSys1 Demand Load Branch 17, !- Branch 18 Name + HeatSys1 Demand Load Branch 18, !- Branch 19 Name + HeatSys1 Demand Load Branch 19, !- Branch 20 Name + HeatSys1 Demand Load Branch 20, !- Branch 21 Name + HeatSys1 Demand Load Branch 21, !- Branch 22 Name + HeatSys1 Demand Load Branch 22, !- Branch 23 Name + HeatSys1 Demand Load Branch 23, !- Branch 24 Name + HeatSys1 Demand Load Branch 24, !- Branch 25 Name + HeatSys1 Demand Load Branch 25, !- Branch 26 Name + HeatSys1 Demand Load Branch 26, !- Branch 27 Name + HeatSys1 Demand Load Branch 27, !- Branch 28 Name + HeatSys1 Demand Load Branch 28, !- Branch 29 Name + HeatSys1 Demand Load Branch 29, !- Branch 30 Name + HeatSys1 Demand Load Branch 30, !- Branch 31 Name + HeatSys1 Demand Load Branch 31, !- Branch 32 Name + HeatSys1 Demand Load Branch 32, !- Branch 33 Name + HeatSys1 Demand Load Branch 33, !- Branch 34 Name + HeatSys1 Demand Load Branch 34, !- Branch 35 Name + HeatSys1 Demand Load Branch 35, !- Branch 36 Name + HeatSys1 Demand Load Branch 36, !- Branch 37 Name + HeatSys1 Demand Load Branch 37, !- Branch 38 Name + HeatSys1 Demand Load Branch 38, !- Branch 39 Name + HeatSys1 Demand Load Branch 39, !- Branch 40 Name + HeatSys1 Demand Load Branch 40, !- Branch 41 Name + HeatSys1 Demand Load Branch 41, !- Branch 42 Name + HeatSys1 Demand Load Branch 42, !- Branch 43 Name + HeatSys1 Demand Load Branch 43, !- Branch 44 Name + HeatSys1 Demand Load Branch 44, !- Branch 45 Name + HeatSys1 Demand Load Branch 45, !- Branch 46 Name + HeatSys1 Demand Bypass Branch, !- Branch 47 Name + HeatSys1 Demand Outlet Branch; !- Branch 48 Name + + BranchList, + CoolSys1 Supply Branches,!- Name + CoolSys1 Supply Inlet Branch, !- Branch 1 Name + CoolSys1 Supply Equipment Branch, !- Branch 2 Name + CoolSys1 Supply Equipment Bypass Branch, !- Branch 3 Name + CoolSys1 Supply Outlet Branch; !- Branch 4 Name + +! CoolSys1 Demand Bypass Branch, !- Branch 6 Name + + BranchList, + CoolSys1 Demand Branches,!- Name + CoolSys1 Demand Inlet Branch, !- Branch 1 Name + CoolSys1 Demand Load Branch 1, !- Branch 2 Name + CoolSys1 Demand Load Branch 2, !- Branch 3 Name + CoolSys1 Demand Load Branch 3, !- Branch 4 Name + CoolSys1 Demand Load Branch 4, !- Branch 5 Name + CoolSys1 Demand Outlet Branch; !- Branch 6 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:SPLITTER =========== + + Connector:Splitter, + SHWSys1 Supply Splitter, !- Name + SHWSys1 Supply Inlet Branch, !- Inlet Branch Name + SHWSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + SHWSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + SHWSys1 Demand Splitter, !- Name + SHWSys1 Demand Inlet Branch, !- Inlet Branch Name + SHWSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + SHWSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + SHWSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + SHWSys1 Demand Bypass Branch; !- Outlet Branch 4 Name + + Connector:Splitter, + HeatSys1 Supply Splitter,!- Name + HeatSys1 Supply Inlet Branch, !- Inlet Branch Name + HeatSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + HeatSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + HeatSys1 Demand Splitter,!- Name + HeatSys1 Demand Inlet Branch, !- Inlet Branch Name + HeatSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + HeatSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + HeatSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + HeatSys1 Demand Load Branch 4, !- Outlet Branch 4 Name + HeatSys1 Demand Load Branch 5, !- Outlet Branch 5 Name + HeatSys1 Demand Load Branch 6, !- Outlet Branch 6 Name + HeatSys1 Demand Load Branch 7, !- Outlet Branch 7 Name + HeatSys1 Demand Load Branch 8, !- Outlet Branch 8 Name + HeatSys1 Demand Load Branch 9, !- Outlet Branch 9 Name + HeatSys1 Demand Load Branch 10, !- Outlet Branch 10 Name + HeatSys1 Demand Load Branch 11, !- Outlet Branch 11 Name + HeatSys1 Demand Load Branch 12, !- Outlet Branch 12 Name + HeatSys1 Demand Load Branch 13, !- Outlet Branch 13 Name + HeatSys1 Demand Load Branch 14, !- Outlet Branch 14 Name + HeatSys1 Demand Load Branch 15, !- Outlet Branch 15 Name + HeatSys1 Demand Load Branch 16, !- Outlet Branch 16 Name + HeatSys1 Demand Load Branch 17, !- Outlet Branch 17 Name + HeatSys1 Demand Load Branch 18, !- Outlet Branch 18 Name + HeatSys1 Demand Load Branch 19, !- Outlet Branch 19 Name + HeatSys1 Demand Load Branch 20, !- Outlet Branch 20 Name + HeatSys1 Demand Load Branch 21, !- Outlet Branch 21 Name + HeatSys1 Demand Load Branch 22, !- Outlet Branch 22 Name + HeatSys1 Demand Load Branch 23, !- Outlet Branch 23 Name + HeatSys1 Demand Load Branch 24, !- Outlet Branch 24 Name + HeatSys1 Demand Load Branch 25, !- Outlet Branch 25 Name + HeatSys1 Demand Load Branch 26, !- Outlet Branch 26 Name + HeatSys1 Demand Load Branch 27, !- Outlet Branch 27 Name + HeatSys1 Demand Load Branch 28, !- Outlet Branch 28 Name + HeatSys1 Demand Load Branch 29, !- Outlet Branch 29 Name + HeatSys1 Demand Load Branch 30, !- Outlet Branch 30 Name + HeatSys1 Demand Load Branch 31, !- Outlet Branch 31 Name + HeatSys1 Demand Load Branch 32, !- Outlet Branch 32 Name + HeatSys1 Demand Load Branch 33, !- Outlet Branch 33 Name + HeatSys1 Demand Load Branch 34, !- Outlet Branch 34 Name + HeatSys1 Demand Load Branch 35, !- Outlet Branch 35 Name + HeatSys1 Demand Load Branch 36, !- Outlet Branch 36 Name + HeatSys1 Demand Load Branch 37, !- Outlet Branch 37 Name + HeatSys1 Demand Load Branch 38, !- Outlet Branch 38 Name + HeatSys1 Demand Load Branch 39, !- Outlet Branch 39 Name + HeatSys1 Demand Load Branch 40, !- Outlet Branch 40 Name + HeatSys1 Demand Load Branch 41, !- Outlet Branch 41 Name + HeatSys1 Demand Load Branch 42, !- Outlet Branch 42 Name + HeatSys1 Demand Load Branch 43, !- Outlet Branch 43 Name + HeatSys1 Demand Load Branch 44, !- Outlet Branch 44 Name + HeatSys1 Demand Load Branch 45, !- Outlet Branch 45 Name + HeatSys1 Demand Bypass Branch; !- Outlet Branch 46 Name + + Connector:Splitter, + CoolSys1 Supply Splitter,!- Name + CoolSys1 Supply Inlet Branch, !- Inlet Branch Name + CoolSys1 Supply Equipment Branch, !- Outlet Branch 1 Name + CoolSys1 Supply Equipment Bypass Branch; !- Outlet Branch 2 Name + + Connector:Splitter, + CoolSys1 Demand Splitter,!- Name + CoolSys1 Demand Inlet Branch, !- Inlet Branch Name + CoolSys1 Demand Load Branch 1, !- Outlet Branch 1 Name + CoolSys1 Demand Load Branch 2, !- Outlet Branch 2 Name + CoolSys1 Demand Load Branch 3, !- Outlet Branch 3 Name + CoolSys1 Demand Load Branch 4; !- Outlet Branch 4 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTOR:MIXER =========== + + Connector:Mixer, + SHWSys1 Supply Mixer, !- Name + SHWSys1 Supply Outlet Branch, !- Outlet Branch Name + SHWSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + SHWSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + SHWSys1 Demand Mixer, !- Name + SHWSys1 Demand Outlet Branch, !- Outlet Branch Name + SHWSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + SHWSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + SHWSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + SHWSys1 Demand Bypass Branch; !- Inlet Branch 4 Name + + Connector:Mixer, + HeatSys1 Supply Mixer, !- Name + HeatSys1 Supply Outlet Branch, !- Outlet Branch Name + HeatSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + HeatSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + HeatSys1 Demand Mixer, !- Name + HeatSys1 Demand Outlet Branch, !- Outlet Branch Name + HeatSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + HeatSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + HeatSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + HeatSys1 Demand Load Branch 4, !- Inlet Branch 4 Name + HeatSys1 Demand Load Branch 5, !- Inlet Branch 5 Name + HeatSys1 Demand Load Branch 6, !- Inlet Branch 6 Name + HeatSys1 Demand Load Branch 7, !- Inlet Branch 7 Name + HeatSys1 Demand Load Branch 8, !- Inlet Branch 8 Name + HeatSys1 Demand Load Branch 9, !- Inlet Branch 9 Name + HeatSys1 Demand Load Branch 10, !- Inlet Branch 10 Name + HeatSys1 Demand Load Branch 11, !- Inlet Branch 11 Name + HeatSys1 Demand Load Branch 12, !- Inlet Branch 12 Name + HeatSys1 Demand Load Branch 13, !- Inlet Branch 13 Name + HeatSys1 Demand Load Branch 14, !- Inlet Branch 14 Name + HeatSys1 Demand Load Branch 15, !- Inlet Branch 15 Name + HeatSys1 Demand Load Branch 16, !- Inlet Branch 16 Name + HeatSys1 Demand Load Branch 17, !- Inlet Branch 17 Name + HeatSys1 Demand Load Branch 18, !- Inlet Branch 18 Name + HeatSys1 Demand Load Branch 19, !- Inlet Branch 19 Name + HeatSys1 Demand Load Branch 20, !- Inlet Branch 20 Name + HeatSys1 Demand Load Branch 21, !- Inlet Branch 21 Name + HeatSys1 Demand Load Branch 22, !- Inlet Branch 22 Name + HeatSys1 Demand Load Branch 23, !- Inlet Branch 23 Name + HeatSys1 Demand Load Branch 24, !- Inlet Branch 24 Name + HeatSys1 Demand Load Branch 25, !- Inlet Branch 25 Name + HeatSys1 Demand Load Branch 26, !- Inlet Branch 26 Name + HeatSys1 Demand Load Branch 27, !- Inlet Branch 27 Name + HeatSys1 Demand Load Branch 28, !- Inlet Branch 28 Name + HeatSys1 Demand Load Branch 29, !- Inlet Branch 29 Name + HeatSys1 Demand Load Branch 30, !- Inlet Branch 30 Name + HeatSys1 Demand Load Branch 31, !- Inlet Branch 31 Name + HeatSys1 Demand Load Branch 32, !- Inlet Branch 32 Name + HeatSys1 Demand Load Branch 33, !- Inlet Branch 33 Name + HeatSys1 Demand Load Branch 34, !- Inlet Branch 34 Name + HeatSys1 Demand Load Branch 35, !- Inlet Branch 35 Name + HeatSys1 Demand Load Branch 36, !- Inlet Branch 36 Name + HeatSys1 Demand Load Branch 37, !- Inlet Branch 37 Name + HeatSys1 Demand Load Branch 38, !- Inlet Branch 38 Name + HeatSys1 Demand Load Branch 39, !- Inlet Branch 39 Name + HeatSys1 Demand Load Branch 40, !- Inlet Branch 40 Name + HeatSys1 Demand Load Branch 41, !- Inlet Branch 41 Name + HeatSys1 Demand Load Branch 42, !- Inlet Branch 42 Name + HeatSys1 Demand Load Branch 43, !- Inlet Branch 43 Name + HeatSys1 Demand Load Branch 44, !- Inlet Branch 44 Name + HeatSys1 Demand Load Branch 45, !- Inlet Branch 45 Name + HeatSys1 Demand Bypass Branch; !- Inlet Branch 46 Name + + Connector:Mixer, + CoolSys1 Supply Mixer, !- Name + CoolSys1 Supply Outlet Branch, !- Outlet Branch Name + CoolSys1 Supply Equipment Branch, !- Inlet Branch 1 Name + CoolSys1 Supply Equipment Bypass Branch; !- Inlet Branch 2 Name + + Connector:Mixer, + CoolSys1 Demand Mixer, !- Name + CoolSys1 Demand Outlet Branch, !- Outlet Branch Name + CoolSys1 Demand Load Branch 1, !- Inlet Branch 1 Name + CoolSys1 Demand Load Branch 2, !- Inlet Branch 2 Name + CoolSys1 Demand Load Branch 3, !- Inlet Branch 3 Name + CoolSys1 Demand Load Branch 4; !- Inlet Branch 4 Name + +!- =========== ALL OBJECTS IN CLASS: CONNECTORLIST =========== + + ConnectorList, + SHWSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SHWSys1 Supply Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SHWSys1 Supply Mixer; !- Connector 2 Name + + ConnectorList, + SHWSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + SHWSys1 Demand Splitter, !- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + SHWSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + HeatSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + HeatSys1 Supply Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + HeatSys1 Supply Mixer; !- Connector 2 Name + + ConnectorList, + HeatSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + HeatSys1 Demand Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + HeatSys1 Demand Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Supply Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Supply Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Supply Mixer; !- Connector 2 Name + + ConnectorList, + CoolSys1 Demand Connectors, !- Name + Connector:Splitter, !- Connector 1 Object Type + CoolSys1 Demand Splitter,!- Connector 1 Name + Connector:Mixer, !- Connector 2 Object Type + CoolSys1 Demand Mixer; !- Connector 2 Name + +!- =========== ALL OBJECTS IN CLASS: NODELIST =========== + + NodeList, + Corner_Class_1_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_1_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Name + Corridor_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Name + Corridor_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_1_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_1_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_1_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_1_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Name + Corridor_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Name + Corridor_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_2_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_2_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_1_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_1_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_1_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Name + Corridor_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corridor_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Name + Corridor_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Corner_Class_2_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_3_ZN_1_FLR_1 Inlet Nodes, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mult_Class_2_Pod_3_ZN_1_FLR_2 Inlet Nodes, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Main_Corridor_ZN_1_FLR_1 Inlet Nodes, !- Name + Main_Corridor_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Main_Corridor_ZN_1_FLR_2 Inlet Nodes, !- Name + Main_Corridor_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Lobby_ZN_1_FLR_1 Inlet Nodes, !- Name + Lobby_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Lobby_ZN_1_FLR_2 Inlet Nodes, !- Name + Lobby_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Bathrooms_ZN_1_FLR_1 Inlet Nodes, !- Name + Bathrooms_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Bathrooms_ZN_1_FLR_1 Exhaust Nodes, !- Name + Bathrooms_ZN_1_FLR_1 Exhaust Fan Node; !- Node 1 Name + + NodeList, + Bathrooms_ZN_1_FLR_2 Inlet Nodes, !- Name + Bathrooms_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Bathrooms_ZN_1_FLR_2 Exhaust Nodes, !- Name + Bathrooms_ZN_1_FLR_2 Exhaust Fan Node; !- Node 1 Name + + NodeList, + Offices_ZN_1_FLR_1 Inlet Nodes, !- Name + Offices_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Offices_ZN_1_FLR_2 Inlet Nodes, !- Name + Offices_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Gym_ZN_1_FLR_1 Inlet Nodes, !- Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Aux_Gym_ZN_1_FLR_1 Inlet Nodes, !- Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Auditorium_ZN_1_FLR_1 Inlet Nodes, !- Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Kitchen_ZN_1_FLR_1 Inlet Nodes, !- Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Kitchen_ZN_1_FLR_1 Exhaust Nodes, !- Name + Kitchen_ZN_1_FLR_1 Exhaust Fan Node; !- Node 1 Name + + NodeList, + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 Inlet Nodes, !- Name + LIBRARY_MEDIA_CENTER_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Cafeteria_ZN_1_FLR_1 Inlet Nodes, !- Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name; !- Node 1 Name + + NodeList, + Mech_ZN_1_FLR_1 Inlet Nodes, !- Name + Mech_ZN_1_FLR_1 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + Mech_ZN_1_FLR_2 Inlet Nodes, !- Name + Mech_ZN_1_FLR_2 VAV Box Outlet Node Name; !- Node 1 Name + + NodeList, + VAV_POD_1_OANode List, !- Name + VAV_POD_1_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_POD_2_OANode List, !- Name + VAV_POD_2_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_POD_3_OANode List, !- Name + VAV_POD_3_OAInlet Node; !- Node 1 Name + + NodeList, + VAV_OTHER_OANode List, !- Name + VAV_OTHER_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC_1:5_OANode List, !- Name + PSZ-AC_1:5_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC_2:6_OANode List, !- Name + PSZ-AC_2:6_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC_3:7_OANode List, !- Name + PSZ-AC_3:7_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC_4:8_OANode List, !- Name + PSZ-AC_4:8_OAInlet Node; !- Node 1 Name + + NodeList, + PSZ-AC_5:9_OANode List, !- Name + PSZ-AC_5:9_OAInlet Node; !- Node 1 Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODE =========== + + OutdoorAir:Node, + RACK1_condenserInlet; !- Name + + OutdoorAir:Node, + RACK2_condenserInlet; !- Name + + OutdoorAir:Node, + PSZ-AC_1:5_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC_2:6_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC_3:7_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC_4:8_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + PSZ-AC_5:9_CoolCOA Ref node; !- Name + + OutdoorAir:Node, + CoolSys1 Chillercondenser OA inlet; !- Name + + OutdoorAir:Node, + PSZ-AC_1:5 Cond OA node; !- Name + + OutdoorAir:Node, + PSZ-AC_2:6 Cond OA node; !- Name + + OutdoorAir:Node, + PSZ-AC_3:7 Cond OA node; !- Name + + OutdoorAir:Node, + PSZ-AC_4:8 Cond OA node; !- Name + + OutdoorAir:Node, + PSZ-AC_5:9 Cond OA node; !- Name + +!- =========== ALL OBJECTS IN CLASS: OUTDOORAIR:NODELIST =========== + + OutdoorAir:NodeList, + VAV_POD_1_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_POD_2_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_POD_3_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + VAV_OTHER_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC_1:5_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC_2:6_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC_3:7_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC_4:8_OANode List; !- Node or NodeList Name 1 + + OutdoorAir:NodeList, + PSZ-AC_5:9_OANode List; !- Node or NodeList Name 1 + +!- =========== ALL OBJECTS IN CLASS: PUMP:VARIABLESPEED =========== + + Pump:ConstantSpeed, + SHWSys1 Pump, !- Name + SHWSys1 Supply Inlet Node, !- Inlet Node Name + SHWSys1 Pump-SHWSys1 Water HeaterNodeviaConnector, !- Outlet Node Name + autosize, !- Design Flow Rate {m3/s} + 34026, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.30, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent; !- Pump Control Type + +! PumpCurve_flag and HOTW_PumpCurve_flag variables are used to switch pump curves among pump ride on the curve, VSD without pressure reset and VSD with pressure reset + + Pump:VariableSpeed, + HeatSys1 Pump, !- Name + HeatSys1 Supply Inlet Node, !- Inlet Node Name + HeatSys1 Pump-HeatSys1 BoilerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Maximum Flow Rate {m3/s} + 179352, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 0.0205, !- Coefficient 2 of the Part Load Performance Curve + 0.4101, !- Coefficient 3 of the Part Load Performance Curve + 0.5753, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent; !- Pump Control Type + + Pump:ConstantSpeed, + CoolSys1 Pump, !- Name + CoolSys1 Supply Inlet Node, !- Inlet Node Name + CoolSys1 Pump-CoolSys1 ChillerNodeviaConnector, !- Outlet Node Name + AUTOSIZE, !- Design Flow Rate {m3/s} + 44761.27683, !- Design Pump Head {Pa} + AUTOSIZE, !- Design Power Consumption {W} + 0.9, !- Motor Efficiency + 0.0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + ; !- Pump Flow Rate Schedule Name + +! PumpCurve_flag and HOTW_PumpCurve_flag variables are used to switch pump curves among pump ride on the curve, VSD without pressure reset and VSD with pressure reset + + Pump:VariableSpeed, + CoolSys1 Pump Secondary, !- Name + CoolSys1 Demand Inlet Node, !- Inlet Node Name + CoolSys1 Pump Secondary-CoolSys1 Demand Mixer, !- Outlet Node Name + autosize, !- Design Maximum Flow Rate {m3/s} + 134283.8305, !- 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.0205, !- Coefficient 2 of the Part Load Performance Curve + 0.4101, !- Coefficient 3 of the Part Load Performance Curve + 0.5753, !- Coefficient 4 of the Part Load Performance Curve + 0, !- Design Minimum Flow Rate {m3/s} + Intermittent; !- Pump Control Type + +!- =========== ALL OBJECTS IN CLASS: BOILER:HOTWATER =========== + + Boiler:HotWater, + HeatSys1 Boiler, !- Name + NATURALGAS, !- Fuel Type + 1012337.26, !- Nominal Capacity {W} + 0.8125, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + HeatSys1 Boiler Efficiency Curve, !- Normalized Boiler Efficiency Curve Name + AUTOSIZE, !- Design Water Flow Rate {m3/s} + 0.0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1.0, !- Optimum Part Load Ratio + HeatSys1 Pump-HeatSys1 BoilerNode, !- Boiler Water Inlet Node Name + HeatSys1 Supply Equipment Outlet Node, !- Boiler Water Outlet Node Name + 95.0, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated,!- Boiler Flow Mode + 0.0000, !- Parasitic Electric Load {W} + 1.0000; !- Sizing Factor + + SetpointManager:Scheduled, + HeatSys1 Boiler Setpoint Manager, !- Name + Temperature, !- Control Variable + HW-Loop-Temp-Schedule, !- Schedule Name + HeatSys1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + Curve:Quadratic, + HeatSys1 Boiler Efficiency Curve, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CHILLER:ELECTRIC:EIR =========== + + Chiller:Electric:EIR, + CoolSys1 Chiller, !- Name + 725913.12, !- Reference Capacity {W} + 2.96, !- Reference COP {W/W} + 6.6700, !- Reference Leaving Chilled Water Temperature {C} + 35.000, !- Reference Entering Condenser Fluid Temperature {C} + AutoSize, !- Reference Chilled Water Flow Rate {m3/s} + AutoSize, !- Reference Condenser Fluid Flow Rate {m3/s} + AC_2010_PA_CAPFT, !- Cooling Capacity Function of Temperature Curve Name + AC_2010_PA_EIRFT, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + AC_GT150_2010_PA_EIRFPLR,!- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.1500, !- Minimum Part Load Ratio + 1.0000, !- Maximum Part Load Ratio + 1.0000, !- Optimum Part Load Ratio + 0.2500, !- Minimum Unloading Ratio + CoolSys1 Pump-CoolSys1 ChillerNode, !- Chilled Water Inlet Node Name + CoolSys1 Supply Equipment Outlet Node, !- Chilled Water Outlet Node Name + CoolSys1 Chillercondenser OA inlet, !- Condenser Inlet Node Name + CoolSys1 Chillercondenser outlet, !- Condenser Outlet Node Name + AIRCOOLED, !- Condenser Type + , !- Condenser Fan Power Ratio {W/W} + , !- Fraction of Compressor Electric Consumption Rejected by Condenser + 2.0000, !- Leaving Chilled Water Lower Temperature Limit {C} + ConstantFlow, !- Chiller Flow Mode + 0.0000; !- Design Heat Recovery Water Flow Rate {m3/s} + +!- =========== ALL OBJECTS IN CLASS: WATERHEATER:MIXED =========== + + WaterHeater:Mixed, + SHWSys1 Water Heater, !- Name + 2.271247, !- Tank Volume {m3} + SHWSys1 Water Heater Setpoint Temperature Schedule Name, !- Setpoint Temperature Schedule Name + 2.0, !- Deadband Temperature Difference {deltaC} + 82.2222, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 175842.6, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NATURALGAS, !- Heater Fuel Type + 0.802764687, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 1205.08, !- Off Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- Off Cycle Parasitic Fuel Type + 0.8, !- Off Cycle Parasitic Heat Fraction to Tank + 1205.08, !- On Cycle Parasitic Fuel Consumption Rate {W} + NATURALGAS, !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + MECH_ZN_1_FLR_1, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 15.60100579, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 15.60100579, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + SHWSys1 Pump-SHWSys1 Water HeaterNode, !- Use Side Inlet Node Name + SHWSys1 Supply Equipment Outlet Node, !- Use Side Outlet Node Name + 1.0, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1.0, !- Source Side Effectiveness + AUTOSIZE, !- Use Side Design Flow Rate {m3/s} + AUTOSIZE, !- Source Side Design Flow Rate {m3/s} + 1.5; !- Indirect Water Heating Recovery Time {hr} + + WaterHeater:Mixed, + SHW Booster Water Heater,!- Name + 0.02271247, !- Tank Volume {m3} + Booster Water Setpoint Temp Schedule, !- Setpoint Temperature Schedule Name + 2.00000005298191, !- Deadband Temperature Difference {deltaC} + 82.2222244003673, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 14000, !- Heater Maximum Capacity {W} + 0, !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + Electricity, !- Heater Fuel Type + 1, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + , !- Off Cycle Parasitic Fuel Consumption Rate {W} + Electricity, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + , !- On Cycle Parasitic Fuel Consumption Rate {W} + , !- On Cycle Parasitic Fuel Type + , !- On Cycle Parasitic Heat Fraction to Tank + Zone, !- Ambient Temperature Indicator + , !- Ambient Temperature Schedule Name + KITCHEN_ZN_1_FLR_1, !- Ambient Temperature Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 1.591045154, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Zone + 1.591045154, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Zone + 1.49607339726648E-3, !- Peak Use Flow Rate {m3/s} + BLDG_SWH_SCH, !- Use Flow Rate Fraction Schedule Name + Booster Water Inlet Temp Schedule; !- Cold Water Supply Temperature Schedule Name + +!- =========== ALL OBJECTS IN CLASS: PLANTLOOP =========== +!***** Plant Loop: SHWSys1 ***** + + PlantLoop, + SHWSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + SHWSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + SHWSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 60.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + SHWSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + SHWSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + SHWSys1 Supply Branches, !- Plant Side Branch List Name + SHWSys1 Supply Connectors, !- Plant Side Connector List Name + SHWSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + SHWSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + SHWSys1 Demand Branches, !- Demand Side Branch List Name + SHWSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +!***** Plant Loop: HeatSys1 ***** + + PlantLoop, + HeatSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + HeatSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + HeatSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 100.0, !- Maximum Loop Temperature {C} + 10.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + HeatSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + HeatSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + HeatSys1 Supply Branches,!- Plant Side Branch List Name + HeatSys1 Supply Connectors, !- Plant Side Connector List Name + HeatSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + HeatSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + HeatSys1 Demand Branches,!- Demand Side Branch List Name + HeatSys1 Demand Connectors, !- Demand Side Connector List Name + Optimal; !- Load Distribution Scheme + +!***** Plant Loop: CoolSys1 ***** + + PlantLoop, + CoolSys1, !- Name + Water, !- Fluid Type + , !- User Defined Fluid Type + CoolSys1 Loop Operation Scheme List, !- Plant Equipment Operation Scheme Name + CoolSys1 Supply Outlet Node, !- Loop Temperature Setpoint Node Name + 98.0, !- Maximum Loop Temperature {C} + 1.0, !- Minimum Loop Temperature {C} + AUTOSIZE, !- Maximum Loop Flow Rate {m3/s} + 0.0, !- Minimum Loop Flow Rate {m3/s} + AUTOSIZE, !- Plant Loop Volume {m3} + CoolSys1 Supply Inlet Node, !- Plant Side Inlet Node Name + CoolSys1 Supply Outlet Node, !- Plant Side Outlet Node Name + CoolSys1 Supply Branches,!- Plant Side Branch List Name + CoolSys1 Supply Connectors, !- Plant Side Connector List Name + CoolSys1 Demand Inlet Node, !- Demand Side Inlet Node Name + CoolSys1 Demand Outlet Node, !- Demand Side Outlet Node Name + CoolSys1 Demand Branches,!- Demand Side Branch List Name + CoolSys1 Demand Connectors, !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + , !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + TwoWayCommonPipe; !- Common Pipe Simulation + +!- =========== ALL OBJECTS IN CLASS: PIPE:ADIABATIC =========== + + Pipe:Adiabatic, + SHWSys1 Supply Equipment Bypass Pipe, !- Name + SHWSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + SHWSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Supply Outlet Pipe, !- Name + SHWSys1 Supply Mixer-SHWSys1 Supply Outlet Pipe, !- Inlet Node Name + SHWSys1 Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Inlet Pipe, !- Name + SHWSys1 Demand Inlet Node, !- Inlet Node Name + SHWSys1 Demand Inlet Pipe-SHWSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Bypass Pipe, !- Name + SHWSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + SHWSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + SHWSys1 Demand Outlet Pipe, !- Name + SHWSys1 Demand Mixer-SHWSys1 Demand Outlet Pipe, !- Inlet Node Name + SHWSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Supply Equipment Bypass Pipe, !- Name + HeatSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + HeatSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Supply Outlet Pipe, !- Name + HeatSys1 Supply Mixer-HeatSys1 Supply Outlet Pipe, !- Inlet Node Name + HeatSys1 Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Inlet Pipe, !- Name + HeatSys1 Demand Inlet Node, !- Inlet Node Name + HeatSys1 Demand Inlet Pipe-HeatSys1 Demand Mixer; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Bypass Pipe, !- Name + HeatSys1 Demand Bypass Pipe Inlet Node, !- Inlet Node Name + HeatSys1 Demand Bypass Pipe Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + HeatSys1 Demand Outlet Pipe, !- Name + HeatSys1 Demand Mixer-HeatSys1 Demand Outlet Pipe, !- Inlet Node Name + HeatSys1 Demand Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Supply Equipment Bypass Pipe, !- Name + CoolSys1 Supply Equip Bypass Inlet Node, !- Inlet Node Name + CoolSys1 Supply Equip Bypass Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Supply Outlet Pipe, !- Name + CoolSys1 Supply Mixer-CoolSys1 Supply Outlet Pipe, !- Inlet Node Name + CoolSys1 Supply Outlet Node; !- Outlet Node Name + + Pipe:Adiabatic, + CoolSys1 Demand Outlet Pipe, !- Name + CoolSys1 Demand Mixer-CoolSys1 Demand Outlet Pipe, !- Inlet Node Name + CoolSys1 Demand Outlet Node; !- Outlet Node Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTLIST =========== + + PlantEquipmentList, + SHWSys1 Equipment List, !- Name + WaterHeater:Mixed, !- Equipment 1 Object Type + SHWSys1 Water Heater; !- Equipment 1 Name + + PlantEquipmentList, + HeatSys1 Equipment List, !- Name + Boiler:HotWater, !- Equipment 1 Object Type + HeatSys1 Boiler; !- Equipment 1 Name + + PlantEquipmentList, + CoolSys1 Equipment List, !- Name + Chiller:Electric:EIR, !- Equipment 1 Object Type + CoolSys1 Chiller; !- Equipment 1 Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:COOLINGLOAD =========== + + PlantEquipmentOperation:CoolingLoad, + CoolSys1 Operation Scheme, !- Name + 0.0, !- Load Range 1 Lower Limit {W} + 100000000000000, !- Load Range 1 Upper Limit {W} + CoolSys1 Equipment List; !- Range 1 Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATION:HEATINGLOAD =========== + + PlantEquipmentOperation:HeatingLoad, + SHWSys1 Operation Scheme,!- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + SHWSys1 Equipment List; !- Range 1 Equipment List Name + + PlantEquipmentOperation:HeatingLoad, + HeatSys1 Operation Scheme, !- Name + 0.0, !- Load Range 1 Lower Limit {W} + 1000000000000000, !- Load Range 1 Upper Limit {W} + HeatSys1 Equipment List; !- Range 1 Equipment List Name + +!- =========== ALL OBJECTS IN CLASS: PLANTEQUIPMENTOPERATIONSCHEMES =========== + + PlantEquipmentOperationSchemes, + SHWSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + SHWSys1 Operation Scheme,!- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + HeatSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:HeatingLoad, !- Control Scheme 1 Object Type + HeatSys1 Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + + PlantEquipmentOperationSchemes, + CoolSys1 Loop Operation Scheme List, !- Name + PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type + CoolSys1 Operation Scheme, !- Control Scheme 1 Name + PlantOnSched; !- Control Scheme 1 Schedule Name + +!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGER:NIGHTCYCLE =========== + + AvailabilityManager:NightCycle, + VAV_POD_1 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_POD_2 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_POD_3 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + VAV_OTHER Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC_1:5 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC_2:6 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC_3:7 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC_4:8 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + + AvailabilityManager:NightCycle, + PSZ-AC_5:9 Availability Manager, !- Name + Always_On, !- Applicability Schedule Name + HVACOperationSchd, !- Fan Schedule Name + CycleOnAny, !- Control Type + 1.0, !- Thermostat Tolerance {deltaC} + FixedRunTime, !- Cycling Run Time Control Type + 1800; !- Cycling Run Time {s} + +!- =========== ALL OBJECTS IN CLASS: AVAILABILITYMANAGERASSIGNMENTLIST =========== + + AvailabilityManagerAssignmentList, + VAV_POD_1 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_POD_1 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_POD_2 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_POD_2 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_POD_3 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_POD_3 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + VAV_OTHER Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + VAV_OTHER Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC_1:5 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC_1:5 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC_2:6 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC_2:6 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC_3:7 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC_3:7 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC_4:8 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC_4:8 Availability Manager; !- Availability Manager 1 Name + + AvailabilityManagerAssignmentList, + PSZ-AC_5:9 Availability Manager List, !- Name + AvailabilityManager:NightCycle, !- Availability Manager 1 Object Type + PSZ-AC_5:9 Availability Manager; !- Availability Manager 1 Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SCHEDULED =========== + + SetpointManager:Scheduled, + CoolSys1 Loop Plant Demand Inlet Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Demand Inlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + SHWSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + SHWSys1-Loop-Temp-Schedule, !- Schedule Name + SHWSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + HeatSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + HW-Loop-Temp-Schedule, !- Schedule Name + HeatSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:Scheduled, + CoolSys1 Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + CW-Loop-Temp-Schedule, !- Schedule Name + CoolSys1 Supply Outlet Node; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SET POINT MANAGER:OUTDOORAIRRESET =========== + + SetpointManager:OutdoorAirReset, + VAV_POD_1 SAT setpoint, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_POD_1 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:OutdoorAirReset, + VAV_POD_2 SAT setpoint, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_POD_2 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:OutdoorAirReset, + VAV_POD_3 SAT setpoint, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_POD_3 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:OutdoorAirReset, + VAV_OTHER SAT setpoint, !- Name + Temperature, !- Control Variable + 15.6, !- Setpoint at Outdoor Low Temperature {C} + 10, !- Outdoor Low Temperature {C} + 12.8, !- Setpoint at Outdoor High Temperature {C} + 21.1, !- Outdoor High Temperature {C} + VAV_OTHER Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:SINGLEZONE:REHEAT =========== + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrGym_ZN_1_FLR_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Gym_ZN_1_FLR_1, !- Control Zone Name + Gym_ZN_1_FLR_1 Air Node, !- Zone Node Name + Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrAux_Gym_ZN_1_FLR_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Aux_Gym_ZN_1_FLR_1, !- Control Zone Name + Aux_Gym_ZN_1_FLR_1 Air Node, !- Zone Node Name + Aux_Gym_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrAuditorium_ZN_1_FLR_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Auditorium_ZN_1_FLR_1, !- Control Zone Name + Auditorium_ZN_1_FLR_1 Air Node, !- Zone Node Name + Auditorium_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrKitchen_ZN_1_FLR_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Kitchen_ZN_1_FLR_1, !- Control Zone Name + Kitchen_ZN_1_FLR_1 Air Node, !- Zone Node Name + Kitchen_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + + SetpointManager:SingleZone:Reheat, + SupAirTemp MngrCafeteria_ZN_1_FLR_1, !- Name + Temperature, !- Control Variable + 10.0, !- Minimum Supply Air Temperature {C} + 50.0, !- Maximum Supply Air Temperature {C} + Cafeteria_ZN_1_FLR_1, !- Control Zone Name + Cafeteria_ZN_1_FLR_1 Air Node, !- Zone Node Name + Cafeteria_ZN_1_FLR_1 Direct Air Inlet Node Name, !- Zone Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: SETPOINTMANAGER:MIXEDAIR =========== + + SetpointManager:MixedAir, + VAV_POD_1_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Fan Inlet Node Name + VAV_POD_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_1_CoolC-VAV_POD_1_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_1_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Fan Inlet Node Name + VAV_POD_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_1_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_POD_1 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_1_HeatC-VAV_POD_1 FanNode, !- Fan Inlet Node Name + VAV_POD_1 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_1_OA-VAV_POD_1_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_2_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Fan Inlet Node Name + VAV_POD_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_2_CoolC-VAV_POD_2_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_2_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Fan Inlet Node Name + VAV_POD_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_2_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_POD_2 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_2_HeatC-VAV_POD_2 FanNode, !- Fan Inlet Node Name + VAV_POD_2 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_2_OA-VAV_POD_2_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_3_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Fan Inlet Node Name + VAV_POD_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_3_CoolC-VAV_POD_3_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_3_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_POD_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Fan Inlet Node Name + VAV_POD_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_POD_3_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_POD_3 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_POD_3_HeatC-VAV_POD_3 FanNode, !- Fan Inlet Node Name + VAV_POD_3 Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_POD_3_OA-VAV_POD_3_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OTHER_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_OTHER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Fan Inlet Node Name + VAV_OTHER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OTHER_CoolC-VAV_OTHER_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OTHER_HeatC SAT Manager, !- Name + Temperature, !- Control Variable + VAV_OTHER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Fan Inlet Node Name + VAV_OTHER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + VAV_OTHER_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + VAV_OTHER Supply Equipment Outlet Node, !- Reference Setpoint Node Name + VAV_OTHER_HeatC-VAV_OTHER FanNode, !- Fan Inlet Node Name + VAV_OTHER Supply Equipment Outlet Node, !- Fan Outlet Node Name + VAV_OTHER_OA-VAV_OTHER_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_1:5_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Fan Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_1:5_CoolC-PSZ-AC_1:5_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_1:5_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Fan Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_1:5_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_1:5_HeatC-PSZ-AC_1:5 FanNode, !- Fan Inlet Node Name + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_1:5_OA-PSZ-AC_1:5_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_2:6_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Fan Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_2:6_CoolC-PSZ-AC_2:6_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_2:6_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Fan Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_2:6_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_2:6_HeatC-PSZ-AC_2:6 FanNode, !- Fan Inlet Node Name + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_2:6_OA-PSZ-AC_2:6_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_3:7_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Fan Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_3:7_CoolC-PSZ-AC_3:7_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_3:7_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Fan Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_3:7_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_3:7_HeatC-PSZ-AC_3:7 FanNode, !- Fan Inlet Node Name + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_3:7_OA-PSZ-AC_3:7_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_4:8_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Fan Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_4:8_CoolC-PSZ-AC_4:8_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_4:8_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Fan Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_4:8_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_4:8_HeatC-PSZ-AC_4:8 FanNode, !- Fan Inlet Node Name + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_4:8_OA-PSZ-AC_4:8_CoolCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_5:9_CoolC SAT Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Fan Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_5:9_CoolC-PSZ-AC_5:9_HeatCNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_5:9_HeatC MixedAir Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Fan Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode; !- Setpoint Node or NodeList Name + + SetpointManager:MixedAir, + PSZ-AC_5:9_OAMixed Air Temp Manager, !- Name + Temperature, !- Control Variable + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Reference Setpoint Node Name + PSZ-AC_5:9_HeatC-PSZ-AC_5:9 FanNode, !- Fan Inlet Node Name + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Fan Outlet Node Name + PSZ-AC_5:9_OA-PSZ-AC_5:9_CoolCNode; !- Setpoint Node or NodeList Name + +!- =========== ALL OBJECTS IN CLASS: REFRIGERATION:CASE =========== + + Refrigeration:Case, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_ZN_1_FLR_1, !- Zone Name + 23.8800, !- Rated Ambient Temperature {C} + 55.0000, !- Rated Ambient Relative Humidity {percent} + 734.0000, !- Rated Total Cooling Capacity per Unit Length {W/m} + 0.1000, !- Rated Latent Heat Ratio + 0.4000, !- Rated Runtime Fraction + 7.3200, !- Case Length {m} + -23.0000, !- Case Operating Temperature {C} + CaseTemperatureMethod, !- Latent Case Credit Curve Type + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Latent Case Credit Curve Name + 19.51428571, !- Standard Case Fan Power per Unit Length {W/m} + 19.51428571, !- Operating Case Fan Power per Unit Length {W/m} + 33.0000, !- Standard Case Lighting Power per Unit Length {W/m} + , !- Installed Case Lighting Power per Unit Length {W/m} + walkin_occ_lght_sch, !- Case Lighting Schedule Name + 1.0000, !- Fraction of Lighting Energy to Case + 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m} + 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m} + None, !- Anti-Sweat Heater Control Type + 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent} + 0.0, !- Case Height {m} + 0.0000, !- Fraction of Anti-Sweat Heater Energy to Case + 410.0000, !- Case Defrost Power per Unit Length {W/m} + ELECTRIC, !- Case Defrost Type + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseDefrost2aDaySched, !- Case Defrost Schedule Name + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseDripDown2aDaySched, !- Case Defrost Drip-Down Schedule Name + None, !- Defrost Energy Correction Curve Type + , !- Defrost Energy Correction Curve Name + 0.0000, !- Under Case HVAC Return Air Fraction + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_WalkInStockingSched, !- Refrigerated Case Restocking Schedule Name + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_CaseCreditReduxSched; !- Case Credit Fraction Schedule Name + + Refrigeration:Case, + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASE, !- Name + ALWAYS_ON, !- Availability Schedule Name + Kitchen_ZN_1_FLR_1, !- Zone Name + 23.8800, !- Rated Ambient Temperature {C} + 55.0000, !- Rated Ambient Relative Humidity {percent} + 734.0000, !- Rated Total Cooling Capacity per Unit Length {W/m} + 0.0800, !- Rated Latent Heat Ratio + 0.8500, !- Rated Runtime Fraction + 7.3200, !- Case Length {m} + 2.0000, !- Case Operating Temperature {C} + CaseTemperatureMethod, !- Latent Case Credit Curve Type + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Latent Case Credit Curve Name + 15.71428571, !- Standard Case Fan Power per Unit Length {W/m} + 15.71428571, !- Operating Case Fan Power per Unit Length {W/m} + 33.0000, !- Standard Case Lighting Power per Unit Length {W/m} + , !- Installed Case Lighting Power per Unit Length {W/m} + walkin_occ_lght_sch, !- Case Lighting Schedule Name + 1.0000, !- Fraction of Lighting Energy to Case + 0.0000, !- Case Anti-Sweat Heater Power per Unit Length {W/m} + 0.0000, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m} + None, !- Anti-Sweat Heater Control Type + 0.0, !- Humidity at Zero Anti-Sweat Heater Energy {percent} + 0.0, !- Case Height {m} + 0.2000, !- Fraction of Anti-Sweat Heater Energy to Case + 0.0000, !- Case Defrost Power per Unit Length {W/m} + NONE, !- Case Defrost Type + , !- Case Defrost Schedule Name + , !- Case Defrost Drip-Down Schedule Name + None, !- Defrost Energy Correction Curve Type + , !- Defrost Energy Correction Curve Name + 0.0500, !- Under Case HVAC Return Air Fraction + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched; !- Refrigerated Case Restocking Schedule Name + +!- =========== ALL OBJECTS IN CLASS: REFRIGERATION:COMPRESSORRACK =========== + + Refrigeration:CompressorRack, + RACK1, !- Name + ZONE, !- Heat Rejection Location + 1.5000, !- Design Compressor Rack COP {W/W} + RACK1_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name + 750.0000, !- Design Condenser Fan Power {W} + RACK1_RackCondFanCurve2, !- Condenser Fan Power Function of Temperature Curve Name + AIRCOOLED, !- Condenser Type + , !- Water-Cooled Condenser Inlet Node Name + , !- Water-Cooled Condenser Outlet Node Name + , !- Water-Cooled Loop Flow Type + , !- Water-Cooled Condenser Outlet Temperature Schedule Name + , !- Water-Cooled Condenser Design Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C} + , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C} + , !- Evaporative Condenser Availability Schedule Name + , !- Evaporative Condenser Effectiveness {dimensionless} + , !- Evaporative Condenser Air Flow Rate {m3/s} + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Design Evaporative Condenser Water Pump Power {W} + , !- Evaporative Water Supply Tank Name + RACK1_condenserInlet, !- Condenser Air Inlet Node Name + Low Temp Refrigeration, !- End-Use Subcategory + RACK1CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name + + Refrigeration:CaseAndWalkInList, + RACK1CaseList, !- Name + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER; !- Case or WalkIn 1 Name + + Refrigeration:CompressorRack, + RACK2, !- Name + ZONE, !- Heat Rejection Location + 3.0000, !- Design Compressor Rack COP {W/W} + RACK2_RackCOPfTCurve, !- Compressor Rack COP Function of Temperature Curve Name + 750.0000, !- Design Condenser Fan Power {W} + , !- Condenser Fan Power Function of Temperature Curve Name + AIRCOOLED, !- Condenser Type + , !- Water-Cooled Condenser Inlet Node Name + , !- Water-Cooled Condenser Outlet Node Name + , !- Water-Cooled Loop Flow Type + , !- Water-Cooled Condenser Outlet Temperature Schedule Name + , !- Water-Cooled Condenser Design Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Flow Rate {m3/s} + , !- Water-Cooled Condenser Maximum Water Outlet Temperature {C} + , !- Water-Cooled Condenser Minimum Water Inlet Temperature {C} + , !- Evaporative Condenser Availability Schedule Name + , !- Evaporative Condenser Effectiveness {dimensionless} + , !- Evaporative Condenser Air Flow Rate {m3/s} + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Design Evaporative Condenser Water Pump Power {W} + , !- Evaporative Water Supply Tank Name + RACK2_condenserInlet, !- Condenser Air Inlet Node Name + Med Temp Refrigeration, !- End-Use Subcategory + RACK2CaseList; !- Refrigeration Case Name or WalkIn Name or CaseAndWalkInList Name + + Refrigeration:CaseAndWalkInList, + RACK2CaseList, !- Name + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASE; !- Case or WalkIn 1 Name + + !- =========== ALL OBJECTS IN CLASS: VENTILATION =========== +!- =========== ALL OBJECTS IN CLASS: WATERUSE:EQUIPMENT =========== + + WaterUse:Equipment, + Bathrooms_ZN_1_FLR_1 SHW_default, !- Name + SHW_default, !- End-Use Subcategory + 7.39763692952322E-5, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Bathrooms_ZN_1_FLR_1 SHW_default Temp Sched, !- Target Temperature Schedule Name + Bathrooms_ZN_1_FLR_1 SHW_default Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Bathrooms_ZN_1_FLR_1, !- Zone Name + Bathrooms_ZN_1_FLR_1 SHW_default Sensible fract sched, !- Sensible Fraction Schedule Name + Bathrooms_ZN_1_FLR_1 SHW_default Latent fract sched; !- Latent Fraction Schedule Name + + WaterUse:Equipment, + Bathrooms_ZN_1_FLR_2 SHW_default, !- Name + SHW_default, !- End-Use Subcategory + 7.39763692952322E-5, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Bathrooms_ZN_1_FLR_2 SHW_default Temp Sched, !- Target Temperature Schedule Name + Bathrooms_ZN_1_FLR_2 SHW_default Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Bathrooms_ZN_1_FLR_2, !- Zone Name + Bathrooms_ZN_1_FLR_2 SHW_default Sensible fract sched, !- Sensible Fraction Schedule Name + Bathrooms_ZN_1_FLR_2 SHW_default Latent fract sched; !- Latent Fraction Schedule Name + + WaterUse:Equipment, + Kitchen_ZN_1_FLR_1 SHW_default, !- Name + SHW_default, !- End-Use Subcategory + 3.33647118454045E-4, !- Peak Flow Rate {m3/s} + BLDG_SWH_SCH, !- Flow Rate Fraction Schedule Name + Kitchen_ZN_1_FLR_1 SHW_default Temp Sched, !- Target Temperature Schedule Name + Kitchen_ZN_1_FLR_1 SHW_default Hot Supply Temp Sched, !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + Kitchen_ZN_1_FLR_1, !- Zone Name + Kitchen_ZN_1_FLR_1 SHW_default Sensible fract sched, !- Sensible Fraction Schedule Name + Kitchen_ZN_1_FLR_1 SHW_default Latent fract sched; !- Latent Fraction Schedule Name + +!- =========== ALL OBJECTS IN CLASS: WATERUSE:CONNECTIONS =========== +!***** Process Loads For Zone: Bathrooms_ZN_1_FLR_1 ***** + + WaterUse:Connections, + Bathrooms_ZN_1_FLR_1 SHW_default, !- Name + Bathrooms_ZN_1_FLR_1 SHW_default Water Inlet Node, !- Inlet Node Name + Bathrooms_ZN_1_FLR_1 SHW_default Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Bathrooms_ZN_1_FLR_1 SHW_default; !- Water Use Equipment 1 Name + +!***** Process Loads For Zone: Bathrooms_ZN_1_FLR_2 ***** + + WaterUse:Connections, + Bathrooms_ZN_1_FLR_2 SHW_default, !- Name + Bathrooms_ZN_1_FLR_2 SHW_default Water Inlet Node, !- Inlet Node Name + Bathrooms_ZN_1_FLR_2 SHW_default Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Bathrooms_ZN_1_FLR_2 SHW_default; !- Water Use Equipment 1 Name + +!***** Process Loads For Zone: Kitchen_ZN_1_FLR_1 ***** + + WaterUse:Connections, + Kitchen_ZN_1_FLR_1 SHW_default, !- Name + Kitchen_ZN_1_FLR_1 SHW_default Water Inlet Node, !- Inlet Node Name + Kitchen_ZN_1_FLR_1 SHW_default Water Outlet Node, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + , !- Drain Water Heat Exchanger Type + , !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + Kitchen_ZN_1_FLR_1 SHW_default; !- Water Use Equipment 1 Name + +!No PV for this case +!- =========== ALL OBJECTS IN CLASS: CURVE:QUADRATIC =========== + + Curve:Quadratic, + RACK1_RackCOPfTCurve, !- Name + 1.7603, !- Coefficient1 Constant + -0.0377, !- Coefficient2 x + 0.0004, !- Coefficient3 x**2 + 10.0000, !- Minimum Value of x + 35.0000; !- Maximum Value of x + + Curve:Quadratic, + RACK1_RackCondFanCurve2, !- Name + 0.0000, !- Coefficient1 Constant + 0.0286, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 35.0000; !- Maximum Value of x + + Curve:Quadratic, + RACK2_RackCOPfTCurve, !- Name + 1.0000, !- Coefficient1 Constant + 0.0000, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 50.0000; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Name + 1.20550, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Name + 0.77100, !- Coefficient1 Constant + 0.22900, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Name + 1.20550, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Name + 0.77100, !- Coefficient1 Constant + 0.22900, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Name + 1.20550, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Name + 0.77100, !- Coefficient1 Constant + 0.22900, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Name + 1.20550, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Name + 0.77100, !- Coefficient1 Constant + 0.22900, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_CapFF, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_EIRFFF, !- Name + 1.20550, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877; !- Maximum Value of x + + Curve:Quadratic, + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_PLR, !- Name + 0.77100, !- Coefficient1 Constant + 0.22900, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:CUBIC =========== + + Curve:Cubic, + Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZERSingleShelfHorizontal_LatentEnergyMult, !- Name + 0.0236, !- Coefficient1 Constant + 0.0006, !- Coefficient2 x + 0.0000, !- Coefficient3 x**2 + 0.0000, !- Coefficient4 x**3 + -35.0, !- Minimum Value of x + 20.0; !- Maximum Value of x + + Curve:Cubic, + Kitchen_ZN_1_FLR_1_Case:2_SELFCONTAINEDDISPLAYCASEMultiShelfVertical_LatentEnergyMult, !- Name + 0.026526281, !- Coefficient1 Constant + 0.001078032, !- Coefficient2 x + 0.0000602558, !- Coefficient3 x**2 + 0.00000123732, !- Coefficient4 x**3 + -35.0, !- Minimum Value of x + 20.0; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== + + Curve:Biquadratic, + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -0.00008, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_1:5_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -0.00008, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_2:6_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -0.00008, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_3:7_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -0.00008, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_4:8_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_CapFT, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -0.00008, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + + Curve:Biquadratic, + PSZ-AC_5:9_CoolCLennoxStandard10Ton_TGA120S2B_EIRFT, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17.00000, !- Minimum Value of x + 22.00000, !- Maximum Value of x + 29.00000, !- Minimum Value of y + 46.00000; !- Maximum Value of y + +!- Set of chiller curves based on Dick Lord's study dated January 17, 2010... +!- Hospital and Large Office have water cooled chillers...Hence set of water cooled chillers to be used in these prototypes... +!- Large Office will follow 90.1-2010 Path B in the PI case whereas Hospital will follow Path A based on the discussion with the SWG +!- Changed the min. chiller condenser fluid entering temperature to 64 F (17.78 deg C) for water cooled chillers based on Dick's email dated June 4, 2010 +!- and 55 F (12.7 deg C) for air cooled chillers +!- based on email string and energyplus support clarification dated June 1, 2010...also changed the upper limit for air cooled chillers to 125 F (51.67 deg C) +!- and the water cooled chillers to 115 F (46.11 deg C) later the same day... +! Temporary changes to address Dick's wrong PLR curves. On Oct. 27, 2010 +! Water cooled chiller PLR curve comes from E+ data library "ReformEIRChiller Carrier 19FA 5651kW/5.50COP/Vanes EIRFPLR" +! Air-cooled chiller PLR comes from the original curve before addendum M. +!- Water cooled chillers: Positive Displacement chillers... +!- 90.1-2004 and 2007 Baseline curves... + + Curve:Biquadratic, + WC_PD_2004_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- 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_2004_EIRFT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + 0.0009519, !- Coefficient3 x**2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y**2 + -0.0007059, !- 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_LT75_2004_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 + + Curve:Bicubic, + WC_PD_75TO150_2004_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 + + Curve:Bicubic, + WC_PD_150TO300_2004_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 + + Curve:Bicubic, + WC_PD_GT300_2004_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 + +!- 90.1-2010 Path A curves... + + Curve:Biquadratic, + WC_PD_LT150_2010_PA_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- 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_LT150_2010_PA_EIRFT, !- Name + 0.3617105, !- Coefficient1 Constant + -0.0229833, !- Coefficient2 x + 0.0009519, !- Coefficient3 x**2 + 0.0131889, !- Coefficient4 y + 0.0003752, !- Coefficient5 y**2 + -0.0007059, !- 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_GT150_2010_PA_CAPFT, !- Name + 0.9061150, !- Coefficient1 Constant + 0.0292277, !- Coefficient2 x + -0.0003647, !- Coefficient3 x**2 + -0.0009709, !- Coefficient4 y + -0.0000905, !- Coefficient5 y**2 + 0.0002527, !- 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_GT150_2010_PA_EIRFT, !- Name + 0.3773115, !- Coefficient1 Constant + -0.0229032, !- Coefficient2 x + 0.0016504, !- Coefficient3 x**2 + 0.0118156, !- Coefficient4 y + 0.0004345, !- Coefficient5 y**2 + -0.0010132, !- 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_LT75_2010_PA_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 + + Curve:Bicubic, + WC_PD_75TO150_2010_PA_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 + + Curve:Bicubic, + WC_PD_150TO300_2010_PA_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 + + Curve:Bicubic, + WC_PD_GT300_2010_PA_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 + +!- 90.1-2010 Path B curves.. + + 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_LT75_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 + + Curve:Bicubic, + WC_PD_75TO150_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 + + 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 + + Curve:Bicubic, + WC_PD_GT300_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 + +!- Water cooled chillers: Centrifugal Chillers... +!- 90.1-2004 Baseline curves... + + Curve:Biquadratic, + WC_Cent_LT150_2004_CAPFT,!- Name + 0.7446451, !- Coefficient1 Constant + 0.0114858, !- Coefficient2 x + 0.0000148, !- Coefficient3 x**2 + 0.0224010, !- Coefficient4 y + -0.0006880, !- Coefficient5 y**2 + 0.0009839, !- 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_Cent_LT150_2004_EIRFT,!- Name + 0.7728770, !- Coefficient1 Constant + 0.0221010, !- Coefficient2 x + -0.0000799, !- Coefficient3 x**2 + -0.0070045, !- Coefficient4 y + 0.0004763, !- Coefficient5 y**2 + -0.0010612, !- 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_Cent_GT150_2004_CAPFT,!- Name + 0.7600172, !- Coefficient1 Constant + 0.0147432, !- Coefficient2 x + 0.0002144, !- Coefficient3 x**2 + 0.0207218, !- Coefficient4 y + -0.0006425, !- Coefficient5 y**2 + 0.0008007, !- 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_Cent_GT150_2004_EIRFT,!- Name + 0.6772577, !- Coefficient1 Constant + 0.0117857, !- Coefficient2 x + -0.0001967, !- Coefficient3 x**2 + 0.0014414, !- Coefficient4 y + 0.0003005, !- Coefficient5 y**2 + -0.0006807, !- 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_Cent_LT150_2004_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 + + Curve:Bicubic, + WC_Cent_150TO300_2004_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 + + Curve:Bicubic, + WC_Cent_GT300_2004_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 + + !- 90.1-2010 Path A curves... + + Curve:Biquadratic, + WC_Cent_2010_PA_CAPFT, !- Name + 0.7600172, !- Coefficient1 Constant + 0.0147432, !- Coefficient2 x + 0.0002144, !- Coefficient3 x**2 + 0.0207218, !- Coefficient4 y + -0.0006425, !- Coefficient5 y**2 + 0.0008007, !- 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_Cent_2010_PA_EIRFT, !- Name + 0.6772577, !- Coefficient1 Constant + 0.0117857, !- Coefficient2 x + -0.0001967, !- Coefficient3 x**2 + 0.0014414, !- Coefficient4 y + 0.0003005, !- Coefficient5 y**2 + -0.0006807, !- 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_Cent_LT150_2010_PA_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 + + Curve:Bicubic, + WC_Cent_150TO300_2010_PA_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 + + Curve:Bicubic, + WC_Cent_300TO600_2010_PA_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 + + Curve:Bicubic, + WC_Cent_GT600_2010_PA_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 + +!- 90.1-2010 Path B curves... + + Curve:Biquadratic, + WC_Cent_2010_PB_CAPFT, !- Name + 0.5362340, !- Coefficient1 Constant + 0.005581, !- Coefficient2 x + -0.0013654, !- Coefficient3 x**2 + 0.0488966, !- Coefficient4 y + -0.0012018, !- Coefficient5 y**2 + 0.0010523, !- 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_Cent_2010_PB_EIRFT, !- Name + 1.0821822, !- Coefficient1 Constant + 0.0042977, !- Coefficient2 x + -0.0013182, !- Coefficient3 x**2 + -0.0260781, !- Coefficient4 y + 0.0008256, !- Coefficient5 y**2 + -0.0006013, !- 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_Cent_LT150_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 + + Curve:Bicubic, + WC_Cent_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 + + Curve:Bicubic, + WC_Cent_300TO600_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 + + Curve:Bicubic, + WC_Cent_GT600_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 + +!- Air cooled chillers... +!- 90.1-2004 Baseline curves... + + Curve:Biquadratic, + AC_2004_CAPFT, !- Name + 1.0433811, !- Coefficient1 Constant + 0.0407077, !- Coefficient2 x + 0.0004506, !- Coefficient3 x**2 + -0.0041514, !- Coefficient4 y + -0.0000886, !- Coefficient5 y**2 + -0.0003467, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + + Curve:Biquadratic, + AC_2004_EIRFT, !- Name + 0.5961915, !- Coefficient1 Constant + -0.0099496, !- Coefficient2 x + 0.0007888, !- Coefficient3 x**2 + 0.0004506, !- Coefficient4 y + 0.0004875, !- Coefficient5 y**2 + -0.0007623, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + + Curve:Quadratic, + AC_LT150_2004_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + + Curve:Quadratic, + AC_GT150_2004_EIRFPLR, !- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + +!- 90.1-2010 Path A curves... + + Curve:Biquadratic, + AC_2010_PA_CAPFT, !- Name + 1.0433825, !- Coefficient1 Constant + 0.0407073, !- Coefficient2 x + 0.0004506, !- Coefficient3 x**2 + -0.0041514, !- Coefficient4 y + -0.0000886, !- Coefficient5 y**2 + -0.0003467, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + + Curve:Biquadratic, + AC_2010_PA_EIRFT, !- Name + 0.5961907, !- Coefficient1 Constant + -0.0099493, !- Coefficient2 x + 0.0007888, !- Coefficient3 x**2 + 0.0004506, !- Coefficient4 y + 0.0004875, !- Coefficient5 y**2 + -0.0007623, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 12.7, !- Minimum Value of y + 51.67; !- Maximum Value of y + + Curve:Quadratic, + AC_LT150_2010_PA_EIRFPLR,!- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + + Curve:Quadratic, + AC_GT150_2010_PA_EIRFPLR,!- Name + 0.1410, !- Coefficient1 Constant + 0.6550, !- Coefficient2 x + 0.2030, !- Coefficient3 x**2 + 0.0000, !- Minimum Value of x + 1.0000; !- Maximum Value of x + +!- =========== ALL OBJECTS IN CLASS: CURVE:BIQUADRATIC =========== +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Biquadratic, + ChillerCentCapFT, !- Name + 0.7446451, !- Coefficient1 Constant + 0.0114858, !- Coefficient2 x + 0.0000148, !- Coefficient3 x**2 + 0.0224010, !- Coefficient4 y + -0.0006880, !- Coefficient5 y**2 + 0.0009839, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 24.0000, !- Minimum Value of y + 35.0000; !- Maximum Value of y + +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Biquadratic, + ChillerCentEIRFT, !- Name + 0.7728770, !- Coefficient1 Constant + 0.0221010, !- Coefficient2 x + -0.0000799, !- Coefficient3 x**2 + -0.0070045, !- Coefficient4 y + 0.0004763, !- Coefficient5 y**2 + -0.0010612, !- Coefficient6 x*y + 5.0000, !- Minimum Value of x + 10.0000, !- Maximum Value of x + 24.0000, !- Minimum Value of y + 35.0000; !- Maximum Value of y + +!- =========== ALL OBJECTS IN CLASS: CURVE:BICUBIC =========== +!***** Following curve is from Dick Lord's Chiller Model study for ASHRAE 2007 baseline ***** + + Curve:Bicubic, + ChillerCentEIRPLR, !- 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 + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:REPORTS =========== + + Output:Surfaces:Drawing,DXF; + + Output:Surfaces:List,Details; + + Output:VariableDictionary,IDF; + + Output:Constructions,Constructions; + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:SUMMARYREPORTS =========== + + Output:Table:SummaryReports, + AnnualBuildingUtilityPerformanceSummary, !- Report 1 Name + InputVerificationandResultsSummary, !- Report 2 Name + ClimaticDataSummary, !- Report 3 Name + EnvelopeSummary, !- Report 4 Name + EquipmentSummary, !- Report 5 Name + ComponentSizingSummary, !- Report 6 Name + HVACSizingSummary, !- Report 7 Name + SystemSummary; !- Report 8 Name + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:TABLE:MONTHLY =========== + + Output:Table:Monthly, + Monthly Indoor Temp, !- Name + 2, !- Digits After Decimal + Zone Mean Air Temperature, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Occupant Comfort Data Summary, !- Name + 3, !- Digits After Decimal + Zone People Occupant Count, !- Variable or Meter 1 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 1 + Zone Air Temperature, !- Variable or Meter 2 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 2 + Zone Air Relative Humidity, !- Variable or Meter 3 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 3 + Zone Thermal Comfort Mean Radiant Temperature, !- Variable or Meter 4 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 4 + Zone Thermal Comfort ASHRAE 55 Simple Model Summer or Winter Clothes Not Comfortable Time, !- Variable or Meter 5 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 5 + Zone Thermal Comfort Fanger Model PMV, !- Variable or Meter 6 Name + SumOrAverageDuringHoursShown; !- Aggregation Type for Variable or Meter 6 + + Output:Table:Monthly, + Emissions Data Summary, !- Name + 4, !- Digits After Decimal + CO2:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + NOx:Facility, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + SO2:Facility, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + PM:Facility, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Hg:Facility, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + WaterEnvironmentalFactors:Facility, !- Variable or Meter 6 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 6 + Carbon Equivalent:Facility, !- Variable or Meter 7 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 7 + + Output:Table:Monthly, + Outdoor Air Summary, !- Name + 3, !- Digits After Decimal + Zone People Occupant Count, !- Variable or Meter 1 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 1 + Zone People Occupant Count, !- Variable or Meter 2 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 2 + Zone Mechanical Ventilation Air Changes per Hour, !- Variable or Meter 3 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 3 + Zone Infiltration Air Change Rate, !- Variable or Meter 4 Name + SumOrAverageDuringHoursShown; !- Aggregation Type for Variable or Meter 4 + + Output:Table:Monthly, + Ventilation Load Components, !- Name + 3, !- Digits After Decimal + Zone Mechanical Ventilation No Load Heat Removal Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Mechanical Ventilation Cooling Load Increase Energy, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Zone Mechanical Ventilation Cooling Load Increase Due to Overheating Energy, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Zone Mechanical Ventilation Cooling Load Decrease Energy, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Zone Mechanical Ventilation No Load Heat Addition Energy, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Zone Mechanical Ventilation Heating Load Increase Energy, !- Variable or Meter 6 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 6 + Zone Mechanical Ventilation Heating Load Increase Due to Overcooling Energy, !- Variable or Meter 7 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 7 + Zone Mechanical Ventilation Heating Load Decrease Energy, !- Variable or Meter 8 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 8 + + Output:Table:Monthly, + Overall HVAC Air System Loads, !- Name + 3, !- Digits After Decimal + Air System Total Heating Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Air System Total Cooling Energy, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Overall HVAC System Energy, !- Name + 3, !- Digits After Decimal + Electricity:HVAC, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Heating:NaturalGas, !- Variable or Meter 2 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 2 + + Output:Table:Monthly, + Components of Peak Electrical Demand, !- Name + 3, !- Digits After Decimal + Electricity:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity,!- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity,!- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + + Output:Table:Monthly, + Components of Peak Net Electrical Demand, !- Name + 3, !- Digits After Decimal + ElectricityNet:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + ElectricityNet:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity,!- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity,!- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + + Output:Table:Monthly, + Setpoints Not Met With Temperatures, !- Name + 2, !- Digits After Decimal + Zone Heating Setpoint Not Met Time, !- Variable or Meter 1 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 1 + Zone Mean Air Temperature, !- Variable or Meter 2 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 2 + Zone Heating Setpoint Not Met While Occupied Time, !- Variable or Meter 3 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 3 + Zone Mean Air Temperature, !- Variable or Meter 4 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 4 + Zone Cooling Setpoint Not Met Time, !- Variable or Meter 5 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 5 + Zone Mean Air Temperature, !- Variable or Meter 6 Name + SumOrAverageDuringHoursShown, !- Aggregation Type for Variable or Meter 6 + Zone Cooling Setpoint Not Met While Occupied Time, !- Variable or Meter 7 Name + HoursNonZero, !- Aggregation Type for Variable or Meter 7 + Zone Mean Air Temperature, !- Variable or Meter 8 Name + SumOrAverageDuringHoursShown; !- Aggregation Type for Variable or Meter 8 + + Output:Table:Monthly, + Building Loads - Cooling,!- Name + 2, !- Digits After Decimal + Zone Air System Sensible Cooling Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Air System Sensible Cooling Rate, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + Site Outdoor Air Wetbulb Temperature, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Zone Total Internal Latent Gain Energy, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Zone Total Internal Latent Gain Energy, !- Variable or Meter 6 Name + Maximum, !- Aggregation Type for Variable or Meter 6 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + Site Outdoor Air Wetbulb Temperature, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 8 + + Output:Table:Monthly, + Building Loads - Heating,!- Name + 2, !- Digits After Decimal + Zone Air System Sensible Heating Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Air System Sensible Heating Rate, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + Site Outdoor Air Drybulb Temperature, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 3 + + Output:Table:Monthly, + Building Loads - Electric, !- Name + 2, !- Digits After Decimal + Zone Lights Electricity Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Lights Electricity Energy, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + Zone Electric Equipment Electricity Energy, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Zone Electric Equipment Electricity Energy, !- Variable or Meter 4 Name + Maximum; !- Aggregation Type for Variable or Meter 4 + + Output:Table:Monthly, + Space Loads, !- Name + 2, !- Digits After Decimal + Zone People Total Heating Energy, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Zone Lights Total Heating Energy, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Zone Electric Equipment Total Heating Energy, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Zone Infiltration Sensible Heat Gain Energy, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + Zone Infiltration Sensible Heat Loss Energy, !- Variable or Meter 5 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 5 + + Output:Table:Monthly, + Energy Consumption - Electricity & Natural Gas, !- Name + 2, !- Digits After Decimal + Electricity:Building, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Building, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + NaturalGas:Building, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + NaturalGas:Building, !- Variable or Meter 4 Name + Maximum; !- Aggregation Type for Variable or Meter 4 + + Output:Table:Monthly, + Building Energy Performance - Electricity, !- Name + 2, !- Digits After Decimal + InteriorLights:Electricity, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + TaskLights:InteriorLights:Electricity, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + ExteriorLights:Electricity, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + General:InteriorEquipment:Electricity, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + ExteriorEquipment:Electricity, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Fans:Electricity, !- Variable or Meter 6 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 6 + Pumps:Electricity, !- Variable or Meter 7 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 7 + Heating:Electricity, !- Variable or Meter 8 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 8 + Cooling:Electricity, !- Variable or Meter 9 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 10 + Humidifier:Electricity, !- Variable or Meter 11 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 11 + HeatRecovery:Electricity,!- Variable or Meter 12 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 12 + WaterSystems:Electricity,!- Variable or Meter 13 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 13 + Cogeneration:Electricity,!- Variable or Meter 14 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 14 + + Output:Table:Monthly, + Building Energy Performance - Natural Gas, !- Name + 2, !- Digits After Decimal + InteriorEquipment:NaturalGas, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + ExteriorEquipment:NaturalGas, !- Variable or Meter 2 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 2 + Heating:NaturalGas, !- Variable or Meter 3 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 3 + Cooling:NaturalGas, !- Variable or Meter 4 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 4 + WaterSystems:NaturalGas, !- Variable or Meter 5 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 5 + Cogeneration:NaturalGas, !- Variable or Meter 6 Name + SumOrAverage; !- Aggregation Type for Variable or Meter 6 + + Output:Table:Monthly, + Peak Energy End-Use - Electricity Part 1, !- Name + 2, !- Digits After Decimal + InteriorLights:Electricity, !- Variable or Meter 1 Name + Maximum, !- Aggregation Type for Variable or Meter 1 + TaskLights:InteriorLights:Electricity, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + ExteriorLights:Electricity, !- Variable or Meter 3 Name + Maximum, !- Aggregation Type for Variable or Meter 3 + General:InteriorEquipment:Electricity, !- Variable or Meter 4 Name + Maximum, !- Aggregation Type for Variable or Meter 4 + ExteriorEquipment:Electricity, !- Variable or Meter 5 Name + Maximum, !- Aggregation Type for Variable or Meter 5 + Fans:Electricity, !- Variable or Meter 6 Name + Maximum, !- Aggregation Type for Variable or Meter 6 + Pumps:Electricity, !- Variable or Meter 7 Name + Maximum, !- Aggregation Type for Variable or Meter 7 + Heating:Electricity, !- Variable or Meter 8 Name + Maximum; !- Aggregation Type for Variable or Meter 8 + +!- =========== ALL OBJECTS IN CLASS: OUTPUTCONTROL:TABLE:STYLE =========== + + OutputControl:Table:Style, + commaAndHTML; !- Column Separator + +!- =========== ALL OBJECTS IN CLASS: OUTPUT:VARIABLE =========== +!- =========== ALL OBJECTS IN CLASS: OUTPUT:ENVIRONMENTALIMPACTFACTORS =========== +!- =========== ALL OBJECTS IN CLASS: ENVIRONMENTALIMPACTFACTORS =========== + + EnvironmentalImpactFactors, + 0.3, !- District Heating Efficiency + 3.0, !- District Cooling COP {W/W} + 0.25, !- Steam Conversion Efficiency + 80.7272, !- Total Carbon Equivalent Emission Factor From N2O {kg/kg} + 6.2727, !- Total Carbon Equivalent Emission Factor From CH4 {kg/kg} + 0.2727; !- Total Carbon Equivalent Emission Factor From CO2 {kg/kg} + +!- =========== ALL OBJECTS IN CLASS: FUELFACTORS =========== + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,Hourly; + + Output:Meter:MeterFileOnly,InteriorEquipment:Electricity,Hourly; + + Output:Table:Monthly, + Peak Electrical Demand, !- Name + 3, !- Digits After Decimal + Electricity:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + Electricity:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + InteriorLights:Electricity, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:Electricity, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + Fans:Electricity, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + Heating:Electricity, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + Cooling:Electricity, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + ExteriorLights:Electricity, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Pumps:Electricity, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 9 + HeatRejection:Electricity, !- Variable or Meter 10 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 10 + ExteriorEquipment:Electricity, !- Variable or Meter 11 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 11 + Humidification:Electricity, !- Variable or Meter 12 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 12 + HeatRecovery:Electricity,!- Variable or Meter 13 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 13 + WaterSystems:Electricity,!- Variable or Meter 14 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 14 + Refrigeration:Electricity, !- Variable or Meter 15 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 15 + Generators:Electricity, !- Variable or Meter 16 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 16 + ElectricityProduced:Facility, !- Variable or Meter 17 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 17 + + Output:Table:Monthly, + Peak Gas Demand, !- Name + 3, !- Digits After Decimal + NaturalGas:Facility, !- Variable or Meter 1 Name + SumOrAverage, !- Aggregation Type for Variable or Meter 1 + NaturalGas:Facility, !- Variable or Meter 2 Name + Maximum, !- Aggregation Type for Variable or Meter 2 + NaturalGas:HVAC, !- Variable or Meter 3 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 3 + InteriorEquipment:NaturalGas, !- Variable or Meter 4 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 4 + MiscPlugGas:InteriorEquipment:NaturalGas, !- Variable or Meter 5 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 5 + NaturalGas:Plant, !- Variable or Meter 6 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 6 + WaterSystems:NaturalGas, !- Variable or Meter 7 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 7 + Water Heater:WaterSystems:NaturalGas, !- Variable or Meter 8 Name + ValueWhenMaximumOrMinimum, !- Aggregation Type for Variable or Meter 8 + Heating:NaturalGas, !- Variable or Meter 9 Name + ValueWhenMaximumOrMinimum; !- Aggregation Type for Variable or Meter 9 + +!- =========== ALL OBJECTS IN CLASS: CONTROLLER:MECHANICALVENTILATION =========== + + Controller:MechanicalVentilation, + VAV_POD_1_MultiZone, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 1 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 1 + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList 2 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 2 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 2 + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList 3 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 3 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 3 + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList 4 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 4 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 4 + Corridor_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList 5 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 5 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 5 + Corridor_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList 6 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 6 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 6 + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList 7 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 7 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 7 + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList 8 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 8 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 8 + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Zone or ZoneList 9 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 9 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 9 + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Zone or ZoneList 10 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 10 + Design_Spec_ZAD_1; !- Design Specification Zone Air Distribution Object Name 10 + + DesignSpecification:ZoneAirDistribution, + Design_Spec_ZAD_1, !- Name + 1, !- Zone Air Distribution Effectiveness in Cooling Mode {dimensionless} + 1, !- Zone Air Distribution Effectiveness in Heating Mode {dimensionless} + ; !- Zone Air Distribution Effectiveness Schedule Name + + DesignSpecification:OutdoorAir, + Design_Spec_OA_Classroom,!- Name + Sum, !- Outdoor Air Method + 0.004719207, !- Outdoor Air Flow per Person {m3/s-person} + 0.000609562; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + Design_Spec_OA_Corridor, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + Controller:MechanicalVentilation, + VAV_POD_2_MultiZone, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 1 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 1 + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList 2 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 2 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 2 + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList 3 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 3 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 3 + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList 4 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 4 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 4 + Corridor_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList 5 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 5 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 5 + Corridor_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList 6 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 6 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 6 + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList 7 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 7 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 7 + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList 8 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 8 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 8 + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Zone or ZoneList 9 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 9 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 9 + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Zone or ZoneList 10 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 10 + Design_Spec_ZAD_1; !- Design Specification Zone Air Distribution Object Name 10 + + Controller:MechanicalVentilation, + VAV_POD_3_MultiZone, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList 1 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 1 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 1 + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList 2 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 2 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 2 + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList 3 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 3 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 3 + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList 4 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 4 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 4 + Corridor_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList 5 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 5 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 5 + Corridor_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList 6 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 6 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 6 + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList 7 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 7 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 7 + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList 8 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 8 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 8 + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Zone or ZoneList 9 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 9 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 9 + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Zone or ZoneList 10 Name + Design_Spec_OA_Classroom,!- Design Specification Outdoor Air Object Name 10 + Design_Spec_ZAD_1; !- Design Specification Zone Air Distribution Object Name 10 + + Controller:MechanicalVentilation, + VAV_OTHER_MultiZone, !- Name + MinOA_MotorizedDamper_Sched, !- Availability Schedule Name + Yes, !- Demand Controlled Ventilation + VentilationRateProcedure,!- System Outdoor Air Method + , !- Zone Maximum Outdoor Air Fraction {dimensionless} + Main_Corridor_ZN_1_FLR_1,!- Zone or ZoneList 1 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 1 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 1 + Main_Corridor_ZN_1_FLR_2,!- Zone or ZoneList 2 Name + Design_Spec_OA_Corridor, !- Design Specification Outdoor Air Object Name 2 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 2 + Lobby_ZN_1_FLR_1, !- Zone or ZoneList 3 Name + Design_Spec_OA_Lobby, !- Design Specification Outdoor Air Object Name 3 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 3 + Lobby_ZN_1_FLR_2, !- Zone or ZoneList 4 Name + Design_Spec_OA_Lobby, !- Design Specification Outdoor Air Object Name 4 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 4 + Bathrooms_ZN_1_FLR_1, !- Zone or ZoneList 5 Name + Design_Spec_OA_0, !- Design Specification Outdoor Air Object Name 5 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 5 + Bathrooms_ZN_1_FLR_2, !- Zone or ZoneList 6 Name + Design_Spec_OA_0, !- Design Specification Outdoor Air Object Name 6 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 6 + Offices_ZN_1_FLR_1, !- Zone or ZoneList 7 Name + Design_Spec_OA_Office, !- Design Specification Outdoor Air Object Name 7 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 7 + Offices_ZN_1_FLR_2, !- Zone or ZoneList 8 Name + Design_Spec_OA_Office, !- Design Specification Outdoor Air Object Name 8 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 8 + Library_Media_Center_ZN_1_FLR_2, !- Zone or ZoneList 9 Name + Design_Spec_OA_Library, !- Design Specification Outdoor Air Object Name 9 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 9 + Mech_ZN_1_FLR_1, !- Zone or ZoneList 10 Name + Design_Spec_OA_0, !- Design Specification Outdoor Air Object Name 10 + Design_Spec_ZAD_1, !- Design Specification Zone Air Distribution Object Name 10 + Mech_ZN_1_FLR_2, !- Zone or ZoneList 11 Name + Design_Spec_OA_0, !- Design Specification Outdoor Air Object Name 11 + Design_Spec_ZAD_1; !- Design Specification Zone Air Distribution Object Name 11 + + DesignSpecification:OutdoorAir, + Design_Spec_OA_Lobby, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000304781; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + Design_Spec_OA_0, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + ; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + Design_Spec_OA_Office, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000431773; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + + DesignSpecification:OutdoorAir, + Design_Spec_OA_Library, !- Name + Sum, !- Outdoor Air Method + 0.00000001, !- Outdoor Air Flow per Person {m3/s-person} + 0.000863546; !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + +! +! This EMS program assigns loads to the transformer. +! It is used to calculate the impact of Addendum 90.1-2007o: Transformers +! + + EnergyManagementSystem:Sensor, + Facility_Int_LTG, !- Name + , !- Output:Variable or Output:Meter Index Key Name + InteriorLights:Electricity; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:GlobalVariable, + Wired_LTG; !- Erl Variable 1 Name + + EnergyManagementSystem:Program, + Transformer_Load_Prog, !- Name + SET Wired_LTG = Facility_Int_LTG*0.0194; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + Transformer_Load_Prog_Manager, !- Name + AfterPredictorAfterHVACManagers, !- EnergyPlus Model Calling Point + Transformer_Load_Prog; !- Program Name 1 + + EnergyManagementSystem:OutputVariable, + Wired_LTG, !- Name + Wired_LTG, !- EMS Variable Name + Summed, !- Type of Data in Variable + ZoneTimeStep, !- Update Frequency + , !- EMS Program or Subroutine Name + J; !- Units + + Meter:Custom, + Wired_LTG_Electricity, !- Name + Electricity, !- Resource Type + , !- Key Name 1 + Wired_LTG; !- Output Variable or Meter Name 1 + + Meter:CustomDecrement, + Wired_Int_EQUIP, !- Name + Electricity, !- Resource Type + InteriorEquipment:Electricity, !- Source Meter Name + Mech_ZN_1_FLR_1_Elevators_Equip, !- Key Name 1 + Electric Equipment Electricity Energy; !- Output Variable or Meter Name 1 + + ElectricLoadCenter:Transformer, + Transformer 1, !- Name + Always_On, !- Availability Schedule Name + PowerInFromGrid, !- Transformer Usage + , !- Zone Name + , !- Radiative Fraction + 225000, !- Rated Capacity {VA} + 3, !- Phase + Aluminum, !- Conductor Material + 150, !- Full Load Temperature Rise {C} + 0.1, !- Fraction of Eddy Current Losses + NominalEfficiency, !- Performance Input Method + , !- Rated No Load Loss {W} + , !- Rated Load Loss {W} + 0.989, !- Nameplate Efficiency + 0.35, !- Per Unit Load for Nameplate Efficiency + 75, !- Reference Temperature for Nameplate Efficiency {C} + , !- Per Unit Load for Maximum Efficiency + Yes, !- Consider Transformer Loss for Utility Cost + Wired_LTG_Electricity, !- Meter 1 Name + Wired_INT_EQUIP; !- Meter 2 Name + +! +! End Addendum O transformers implementation +! +! +! EMS code for economizer and fan operation of PSZ-AC_1:5. +! +! 1. Sensors +! 2. Internal Variables +! 3. Actuators +! 4. Global Variables +! 5. Programs +! 6. Program Calling Managers +! +! +! Sensors + + EnergyManagementSystem:Sensor, + OAT_F, !- Name + , !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + OAwb_F, !- Name + *, !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Wetbulb Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_OASch, !- Name + MinOA_MotorizedDamper_Sched, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + GYM_ZN_1_FLR_1_Temp, !- Name + GYM_ZN_1_FLR_1 Air Node, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_OAFlowMass, !- Name + PSZ-AC_1:5_OAInlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_HeatingRTF, !- Name + PSZ-AC_1:5_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_RTF, !- Name + PSZ-AC_1:5_CoolC DXCoil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_SpeedRatio, !- Name + PSZ-AC_1:5_CoolC, !- Output:Variable or Output:Meter Index Key Name + Coil System Compressor Speed Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_DAT_Rqd, !- Name + PSZ-AC_1:5 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Setpoint Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ1_5_Econo_Status, !- Name + PSZ-AC_1:5, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Economizer Status; !- Output:Variable or Output:Meter Name + +! Internal Variables + + EnergyManagementSystem:InternalVariable, + PSZ1_5_Fan_DesignPressure, !- Name + PSZ-AC_1:5 fan, !- Internal Data Index Key Name + Fan Nominal Pressure Rise; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ1_5_DesignFlowMass, !- Name + PSZ-AC_1:5_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ1_5_OADesignMass, !- Name + PSZ-AC_1:5_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Minimum Mass Flow Rate; !- Internal Data Type + +! Actuators + + EnergyManagementSystem:Actuator, + PSZ1_5_Fan_Pressure, !- Name + PSZ-AC_1:5 fan, !- Actuated Component Unique Name + Fan, !- Actuated Component Type + Fan Pressure Rise; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + PSZ1_5_Timestep_Econ_Eff,!- Name + PSZ1_5_Timestep_Econ_Eff_SCH, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:GlobalVariable, + PSZ1_5_FanPwrExponent, !- Erl Variable 1 Name + PSZ1_5_Stage1Speed, !- Erl Variable 2 Name + PSZ1_5_Stage2Speed, !- Erl Variable 3 Name + PSZ1_5_HeatSpeed, !- + PSZ1_5_VenSpeed, !- + PSZ1_5_Number_of_Stages; !- + + EnergyManagementSystem:Program, + PSZ1_5_Economizer_CTRL_Prog, !- Name + SET PSZ1_5_Timestep_Econ_Eff = 0.7, !- Program Line 1 + SET PSZ1_5_MaxE = 0.7, !- Program Line 2 + SET PSZ1_5_DAT_Rqd = (PSZ1_5_DAT_Rqd*1.8) +32, !- + SET OAT_F = (OAT_F*1.8) +32, !- + SET OAwb_F = (OAwb_F*1.8) +32, !- + IF PSZ1_5_OAFlowMass > (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + SET PSZ1_5_Econo_Active = 1, !- + ELSE, !- + SET PSZ1_5_Econo_Active = 0, !- + ENDIF, !- + SET PSZ1_5_dT_Needed = 75 - PSZ1_5_DAT_Rqd, !- + SET PSZ1_5_Cool_Des_dT = ((98*0.15) + (75*(1-0.15))) - 55, !- + SET PSZ1_5_Cool_Load = PSZ1_5_dT_Needed/ PSZ1_5_Cool_Des_dT, !- + IF PSZ1_5_Cool_Load > 1, !- + SET PSZ1_5_Cool_Load = 1,!- + ELSEIF PSZ1_5_Cool_Load < 0, !- + SET PSZ1_5_Cool_Load = 0,!- + ENDIF, !- + IF PSZ1_5_Econo_Active == 1, !- + SET PSZ1_5_Stage = PSZ1_5_Number_of_Stages, !- + IF PSZ1_5_Stage == 2, !- + IF PSZ1_5_Cool_Load < 0.6, !- + SET PSZ1_5_Timestep_Econ_Eff = PSZ1_5_MaxE, !- + ELSE, !- + SET PSZ1_5_ECO_Eff = 0-2.18919863612305, !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.674461284910428 * PSZ1_5_Cool_Load), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0.000459106275872404 * (OAT_F^2)), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.00000484778537945252 * (OAT_F^3)), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0.182915713033586 * OAwb_F), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.00382838660261133 * (OAwb_F^2)), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0.0000255567460240583 * (OAwb_F^3)), !- + SET PSZ1_5_Timestep_Econ_Eff = PSZ1_5_ECO_Eff, !- + ENDIF, !- + ELSE, !- + SET PSZ1_5_ECO_Eff = 2.36337942464462, !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.409939515512619 * PSZ1_5_Cool_Load), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.0565205596792225 * OAwb_F), !- + SET PSZ1_5_ECO_Eff = PSZ1_5_ECO_Eff + (0-0.0000632612294169389 * (OAT_F^2)), !- + SET PSZ1_5_Timestep_Econ_Eff = PSZ1_5_ECO_Eff + (0.000571724868775081 * (OAwb_F^2)), !- + ENDIF, !- + IF PSZ1_5_Timestep_Econ_Eff > PSZ1_5_MaxE, !- + SET PSZ1_5_Timestep_Econ_Eff = PSZ1_5_MaxE, !- + ELSEIF PSZ1_5_Timestep_Econ_Eff < (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + SET PSZ1_5_Timestep_Econ_Eff = (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:Program, + PSZ1_5_Set_Fan_Par, !- Name + IF PSZ1_5_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + SET PSZ1_5_FanPwrExponent = 2.2, !- + SET PSZ1_5_OAFrac = PSZ1_5_OAFlowMass/PSZ1_5_DesignFlowMass, !- + IF PSZ1_5_OAFrac < 0.66,!- + SET PSZ1_5_VenSpeed = 0.66, !- + SET PSZ1_5_Stage1Speed = 0.66, !- + ELSE, !- + SET PSZ1_5_VenSpeed = PSZ1_5_OAFrac, !- + SET PSZ1_5_Stage1Speed = PSZ1_5_OAFrac, !- + ENDIF, !- + SET PSZ1_5_Stage2Speed = 1.0, !- + SET PSZ1_5_HeatSpeed = 1.0; !- + + !Calculate the expected discharge air temperature if the system runs at its low speed + ! For each mode, (percent time in mode) * (fanSpeer^PwrExp) is the contribution to weighted fan power over time step + ! system fan power is directly proportional to static pressure, so this change linearly adjusts fan energy for speed control + + EnergyManagementSystem:Program, + PSZ1_5_Fan_Control, !- Name + IF PSZ1_5_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + IF PSZ1_5_HeatingRTF > 0,!- + SET PSZ1_5_Heating = PSZ1_5_HeatingRTF, !- + SET PSZ1_5_Ven = 1 - PSZ1_5_HeatingRTF, !- + SET PSZ1_5_Eco = 0, !- + SET PSZ1_5_Stage1 = 0, !- + SET PSZ1_5_Stage2 = 0, !- + ELSE, !- + SET PSZ1_5_Heating = 0, !- + SET PSZ1_5_EcoSpeed = PSZ1_5_VenSpeed, !- + IF PSZ1_5_SpeedRatio == 0, !- + IF PSZ1_5_RTF > 0, !- + SET PSZ1_5_Stage1 = PSZ1_5_RTF, !- + SET PSZ1_5_Stage2 = 0, !- + SET PSZ1_5_Ven = 1-PSZ1_5_RTF, !- + SET PSZ1_5_Eco = 0, !- + IF PSZ1_5_OAFlowMass > (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + SET PSZ1_5_Stage1Speed = 1.0, !- + ENDIF, !- + ELSE, !- + SET PSZ1_5_Stage1 = 0, !- + SET PSZ1_5_Stage2 = 0, !- + IF PSZ1_5_OAFlowMass > (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + SET PSZ1_5_Eco = 1.0, !- + SET PSZ1_5_Ven = 0, !- + SET PSZ1_5_Exp_DAT = PSZ1_5_DAT_Rqd - (1-PSZ1_5_VenSpeed) * GYM_ZN_1_FLR_1_Temp, !- + SET PSZ1_5_Exp_DAT = PSZ1_5_Exp_DAT/PSZ1_5_VenSpeed, !- + IF OAT_F > PSZ1_5_Exp_DAT, !- + SET PSZ1_5_EcoSpeed = PSZ1_5_Stage2Speed, !- + ENDIF, !- + ELSE, !- + SET PSZ1_5_Eco = 0, !- + SET PSZ1_5_Ven = 1.0, !- + ENDIF, !- + ENDIF, !- + ELSE, !- + SET PSZ1_5_Stage1 = 1- PSZ1_5_SpeedRatio, !- + SET PSZ1_5_Stage2 = PSZ1_5_SpeedRatio, !- + SET PSZ1_5_Ven = 0, !- + SET PSZ1_5_Eco = 0, !- + IF PSZ1_5_OAFlowMass > (PSZ1_5_OADesignMass * PSZ1_5_OASch), !- + SET PSZ1_5_Stage1Speed = 1.0, !- + ENDIF, !- + ENDIF, !- + ENDIF, !- + SET PSZ1_5_FPR = PSZ1_5_Ven * (PSZ1_5_VenSpeed ^ PSZ1_5_FanPwrExponent), !- + SET PSZ1_5_FPR = PSZ1_5_FPR + PSZ1_5_Eco * (PSZ1_5_EcoSpeed ^ PSZ1_5_FanPwrExponent), !- + SET PSZ1_5_FPR_1 = PSZ1_5_Stage1 * (PSZ1_5_Stage1Speed ^ PSZ1_5_FanPwrExponent), !- + SET PSZ1_5_FPR = PSZ1_5_FPR + PSZ1_5_FPR_1, !- + SET PSZ1_5_FPR_2 = PSZ1_5_Stage2 * (PSZ1_5_Stage2Speed ^ PSZ1_5_FanPwrExponent), !- + SET PSZ1_5_FPR = PSZ1_5_FPR + PSZ1_5_FPR_2, !- + SET PSZ1_5_FPR_3 = PSZ1_5_Heating * (PSZ1_5_HeatSpeed ^ PSZ1_5_FanPwrExponent), !- + SET PSZ1_5_FanPwrRatio = PSZ1_5_FPR + PSZ1_5_FPR_3, !- + SET PSZ1_5_Fan_Pressure = PSZ1_5_Fan_DesignPressure * PSZ1_5_FanPwrRatio; !- + + EnergyManagementSystem:Program, + PSZ1_5_Set_Number_of_Stages, !- Name + SET PSZ1_5_Number_of_Stages = 2; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ1_5_Set_Number_of_Stages_CallingManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ1_5_Set_Number_of_Stages; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ1_5_ECO_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PSZ1_5_Economizer_CTRL_Prog; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ1_5_Fan_Parameter_manager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ1_5_Set_Fan_Par; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ1_5_Fan_Main_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + PSZ1_5_Fan_Control; !- Program Name 1 + +! Schedules for economizer operation + + Schedule:Constant,PSZ1_5_Timestep_Econ_Eff_SCH,Fraction,0.7; + +! +! EMS code for economizer and fan operation of PSZ-AC_2:6. +! +! 1. Sensors +! 2. Internal Variables +! 3. Actuators +! 4. Global Variables +! 5. Programs +! 6. Program Calling Managers +! +! +! Sensors + + EnergyManagementSystem:Sensor, + PSZ2_6_OASch, !- Name + MinOA_MotorizedDamper_Sched, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + AUX_GYM_ZN_1_FLR_1_Temp, !- Name + AUX_GYM_ZN_1_FLR_1 Air Node, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_OAFlowMass, !- Name + PSZ-AC_2:6_OAInlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_HeatingRTF, !- Name + PSZ-AC_2:6_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_RTF, !- Name + PSZ-AC_2:6_CoolC DXCoil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_SpeedRatio, !- Name + PSZ-AC_2:6_CoolC, !- Output:Variable or Output:Meter Index Key Name + Coil System Compressor Speed Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_DAT_Rqd, !- Name + PSZ-AC_2:6 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Setpoint Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ2_6_Econo_Status, !- Name + PSZ-AC_2:6, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Economizer Status; !- Output:Variable or Output:Meter Name + +! Internal Variables + + EnergyManagementSystem:InternalVariable, + PSZ2_6_Fan_DesignPressure, !- Name + PSZ-AC_2:6 fan, !- Internal Data Index Key Name + Fan Nominal Pressure Rise; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ2_6_DesignFlowMass, !- Name + PSZ-AC_2:6_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ2_6_OADesignMass, !- Name + PSZ-AC_2:6_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Minimum Mass Flow Rate; !- Internal Data Type + +! Actuators + + EnergyManagementSystem:Actuator, + PSZ2_6_Fan_Pressure, !- Name + PSZ-AC_2:6 fan, !- Actuated Component Unique Name + Fan, !- Actuated Component Type + Fan Pressure Rise; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + PSZ2_6_Timestep_Econ_Eff,!- Name + PSZ2_6_Timestep_Econ_Eff_SCH, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:GlobalVariable, + PSZ2_6_FanPwrExponent, !- Erl Variable 1 Name + PSZ2_6_Stage1Speed, !- Erl Variable 2 Name + PSZ2_6_Stage2Speed, !- Erl Variable 3 Name + PSZ2_6_HeatSpeed, !- + PSZ2_6_VenSpeed, !- + PSZ2_6_Number_of_Stages; !- + + EnergyManagementSystem:Program, + PSZ2_6_Economizer_CTRL_Prog, !- Name + SET PSZ2_6_Timestep_Econ_Eff = 0.7, !- Program Line 1 + SET PSZ2_6_MaxE = 0.7, !- Program Line 2 + SET PSZ2_6_DAT_Rqd = (PSZ2_6_DAT_Rqd*1.8) +32, !- + SET OAT_F = (OAT_F*1.8) +32, !- + SET OAwb_F = (OAwb_F*1.8) +32, !- + IF PSZ2_6_OAFlowMass > (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + SET PSZ2_6_Econo_Active = 1, !- + ELSE, !- + SET PSZ2_6_Econo_Active = 0, !- + ENDIF, !- + SET PSZ2_6_dT_Needed = 75 - PSZ2_6_DAT_Rqd, !- + SET PSZ2_6_Cool_Des_dT = ((98*0.15) + (75*(1-0.15))) - 55, !- + SET PSZ2_6_Cool_Load = PSZ2_6_dT_Needed/ PSZ2_6_Cool_Des_dT, !- + IF PSZ2_6_Cool_Load > 1, !- + SET PSZ2_6_Cool_Load = 1,!- + ELSEIF PSZ2_6_Cool_Load < 0, !- + SET PSZ2_6_Cool_Load = 0,!- + ENDIF, !- + IF PSZ2_6_Econo_Active == 1, !- + SET PSZ2_6_Stage = PSZ2_6_Number_of_Stages, !- + IF PSZ2_6_Stage == 2, !- + IF PSZ2_6_Cool_Load < 0.6, !- + SET PSZ2_6_Timestep_Econ_Eff = PSZ2_6_MaxE, !- + ELSE, !- + SET PSZ2_6_ECO_Eff = 0-2.18919863612305, !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.674461284910428 * PSZ2_6_Cool_Load), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0.000459106275872404 * (OAT_F^2)), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.00000484778537945252 * (OAT_F^3)), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0.182915713033586 * OAwb_F), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.00382838660261133 * (OAwb_F^2)), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0.0000255567460240583 * (OAwb_F^3)), !- + SET PSZ2_6_Timestep_Econ_Eff = PSZ2_6_ECO_Eff, !- + ENDIF, !- + ELSE, !- + SET PSZ2_6_ECO_Eff = 2.36337942464462, !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.409939515512619 * PSZ2_6_Cool_Load), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.0565205596792225 * OAwb_F), !- + SET PSZ2_6_ECO_Eff = PSZ2_6_ECO_Eff + (0-0.0000632612294169389 * (OAT_F^2)), !- + SET PSZ2_6_Timestep_Econ_Eff = PSZ2_6_ECO_Eff + (0.000571724868775081 * (OAwb_F^2)), !- + ENDIF, !- + IF PSZ2_6_Timestep_Econ_Eff > PSZ2_6_MaxE, !- + SET PSZ2_6_Timestep_Econ_Eff = PSZ2_6_MaxE, !- + ELSEIF PSZ2_6_Timestep_Econ_Eff < (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + SET PSZ2_6_Timestep_Econ_Eff = (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:Program, + PSZ2_6_Set_Fan_Par, !- Name + IF PSZ2_6_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + SET PSZ2_6_FanPwrExponent = 2.2, !- + SET PSZ2_6_OAFrac = PSZ2_6_OAFlowMass/PSZ2_6_DesignFlowMass, !- + IF PSZ2_6_OAFrac < 0.66,!- + SET PSZ2_6_VenSpeed = 0.66, !- + SET PSZ2_6_Stage1Speed = 0.66, !- + ELSE, !- + SET PSZ2_6_VenSpeed = PSZ2_6_OAFrac, !- + SET PSZ2_6_Stage1Speed = PSZ2_6_OAFrac, !- + ENDIF, !- + SET PSZ2_6_Stage2Speed = 1.0, !- + SET PSZ2_6_HeatSpeed = 1.0; !- + + !Calculate the expected discharge air temperature if the system runs at its low speed + ! For each mode, (percent time in mode) * (fanSpeer^PwrExp) is the contribution to weighted fan power over time step + ! system fan power is directly proportional to static pressure, so this change linearly adjusts fan energy for speed control + + EnergyManagementSystem:Program, + PSZ2_6_Fan_Control, !- Name + IF PSZ2_6_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + IF PSZ2_6_HeatingRTF > 0,!- + SET PSZ2_6_Heating = PSZ2_6_HeatingRTF, !- + SET PSZ2_6_Ven = 1 - PSZ2_6_HeatingRTF, !- + SET PSZ2_6_Eco = 0, !- + SET PSZ2_6_Stage1 = 0, !- + SET PSZ2_6_Stage2 = 0, !- + ELSE, !- + SET PSZ2_6_Heating = 0, !- + SET PSZ2_6_EcoSpeed = PSZ2_6_VenSpeed, !- + IF PSZ2_6_SpeedRatio == 0, !- + IF PSZ2_6_RTF > 0, !- + SET PSZ2_6_Stage1 = PSZ2_6_RTF, !- + SET PSZ2_6_Stage2 = 0, !- + SET PSZ2_6_Ven = 1-PSZ2_6_RTF, !- + SET PSZ2_6_Eco = 0, !- + IF PSZ2_6_OAFlowMass > (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + SET PSZ2_6_Stage1Speed = 1.0, !- + ENDIF, !- + ELSE, !- + SET PSZ2_6_Stage1 = 0, !- + SET PSZ2_6_Stage2 = 0, !- + IF PSZ2_6_OAFlowMass > (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + SET PSZ2_6_Eco = 1.0, !- + SET PSZ2_6_Ven = 0, !- + SET PSZ2_6_Exp_DAT = PSZ2_6_DAT_Rqd - (1-PSZ2_6_VenSpeed) * AUX_GYM_ZN_1_FLR_1_Temp, !- + SET PSZ2_6_Exp_DAT = PSZ2_6_Exp_DAT/PSZ2_6_VenSpeed, !- + IF OAT_F > PSZ2_6_Exp_DAT, !- + SET PSZ2_6_EcoSpeed = PSZ2_6_Stage2Speed, !- + ENDIF, !- + ELSE, !- + SET PSZ2_6_Eco = 0, !- + SET PSZ2_6_Ven = 1.0, !- + ENDIF, !- + ENDIF, !- + ELSE, !- + SET PSZ2_6_Stage1 = 1- PSZ2_6_SpeedRatio, !- + SET PSZ2_6_Stage2 = PSZ2_6_SpeedRatio, !- + SET PSZ2_6_Ven = 0, !- + SET PSZ2_6_Eco = 0, !- + IF PSZ2_6_OAFlowMass > (PSZ2_6_OADesignMass * PSZ2_6_OASch), !- + SET PSZ2_6_Stage1Speed = 1.0, !- + ENDIF, !- + ENDIF, !- + ENDIF, !- + SET PSZ2_6_FPR = PSZ2_6_Ven * (PSZ2_6_VenSpeed ^ PSZ2_6_FanPwrExponent), !- + SET PSZ2_6_FPR = PSZ2_6_FPR + PSZ2_6_Eco * (PSZ2_6_EcoSpeed ^ PSZ2_6_FanPwrExponent), !- + SET PSZ2_6_FPR_1 = PSZ2_6_Stage1 * (PSZ2_6_Stage1Speed ^ PSZ2_6_FanPwrExponent), !- + SET PSZ2_6_FPR = PSZ2_6_FPR + PSZ2_6_FPR_1, !- + SET PSZ2_6_FPR_2 = PSZ2_6_Stage2 * (PSZ2_6_Stage2Speed ^ PSZ2_6_FanPwrExponent), !- + SET PSZ2_6_FPR = PSZ2_6_FPR + PSZ2_6_FPR_2, !- + SET PSZ2_6_FPR_3 = PSZ2_6_Heating * (PSZ2_6_HeatSpeed ^ PSZ2_6_FanPwrExponent), !- + SET PSZ2_6_FanPwrRatio = PSZ2_6_FPR + PSZ2_6_FPR_3, !- + SET PSZ2_6_Fan_Pressure = PSZ2_6_Fan_DesignPressure * PSZ2_6_FanPwrRatio; !- + + EnergyManagementSystem:Program, + PSZ2_6_Set_Number_of_Stages, !- Name + SET PSZ2_6_Number_of_Stages = 2; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ2_6_Set_Number_of_Stages_CallingManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ2_6_Set_Number_of_Stages; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ2_6_ECO_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PSZ2_6_Economizer_CTRL_Prog; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ2_6_Fan_Parameter_manager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ2_6_Set_Fan_Par; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ2_6_Fan_Main_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + PSZ2_6_Fan_Control; !- Program Name 1 + +! Schedules for economizer operation + + Schedule:Constant,PSZ2_6_Timestep_Econ_Eff_SCH,Fraction,0.7; + +! +! EMS code for economizer and fan operation of PSZ-AC_3:7. +! +! 1. Sensors +! 2. Internal Variables +! 3. Actuators +! 4. Global Variables +! 5. Programs +! 6. Program Calling Managers +! +! +! Sensors + + EnergyManagementSystem:Sensor, + PSZ3_7_OASch, !- Name + MinOA_MotorizedDamper_Sched, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + AUDITORIUM_ZN_1_FLR_1_Temp, !- Name + AUDITORIUM_ZN_1_FLR_1 Air Node, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_OAFlowMass, !- Name + PSZ-AC_3:7_OAInlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_HeatingRTF, !- Name + PSZ-AC_3:7_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_RTF, !- Name + PSZ-AC_3:7_CoolC DXCoil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_SpeedRatio, !- Name + PSZ-AC_3:7_CoolC, !- Output:Variable or Output:Meter Index Key Name + Coil System Compressor Speed Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_DAT_Rqd, !- Name + PSZ-AC_3:7 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Setpoint Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ3_7_Econo_Status, !- Name + PSZ-AC_3:7, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Economizer Status; !- Output:Variable or Output:Meter Name + +! Internal Variables + + EnergyManagementSystem:InternalVariable, + PSZ3_7_Fan_DesignPressure, !- Name + PSZ-AC_3:7 fan, !- Internal Data Index Key Name + Fan Nominal Pressure Rise; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ3_7_DesignFlowMass, !- Name + PSZ-AC_3:7_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ3_7_OADesignMass, !- Name + PSZ-AC_3:7_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Minimum Mass Flow Rate; !- Internal Data Type + +! Actuators + + EnergyManagementSystem:Actuator, + PSZ3_7_Fan_Pressure, !- Name + PSZ-AC_3:7 fan, !- Actuated Component Unique Name + Fan, !- Actuated Component Type + Fan Pressure Rise; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + PSZ3_7_Timestep_Econ_Eff,!- Name + PSZ3_7_Timestep_Econ_Eff_SCH, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:GlobalVariable, + PSZ3_7_FanPwrExponent, !- Erl Variable 1 Name + PSZ3_7_Stage1Speed, !- Erl Variable 2 Name + PSZ3_7_Stage2Speed, !- Erl Variable 3 Name + PSZ3_7_HeatSpeed, !- + PSZ3_7_VenSpeed, !- + PSZ3_7_Number_of_Stages; !- + + EnergyManagementSystem:Program, + PSZ3_7_Economizer_CTRL_Prog, !- Name + SET PSZ3_7_Timestep_Econ_Eff = 0.7, !- Program Line 1 + SET PSZ3_7_MaxE = 0.7, !- Program Line 2 + SET PSZ3_7_DAT_Rqd = (PSZ3_7_DAT_Rqd*1.8) +32, !- + SET OAT_F = (OAT_F*1.8) +32, !- + SET OAwb_F = (OAwb_F*1.8) +32, !- + IF PSZ3_7_OAFlowMass > (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + SET PSZ3_7_Econo_Active = 1, !- + ELSE, !- + SET PSZ3_7_Econo_Active = 0, !- + ENDIF, !- + SET PSZ3_7_dT_Needed = 75 - PSZ3_7_DAT_Rqd, !- + SET PSZ3_7_Cool_Des_dT = ((98*0.15) + (75*(1-0.15))) - 55, !- + SET PSZ3_7_Cool_Load = PSZ3_7_dT_Needed/ PSZ3_7_Cool_Des_dT, !- + IF PSZ3_7_Cool_Load > 1, !- + SET PSZ3_7_Cool_Load = 1,!- + ELSEIF PSZ3_7_Cool_Load < 0, !- + SET PSZ3_7_Cool_Load = 0,!- + ENDIF, !- + IF PSZ3_7_Econo_Active == 1, !- + SET PSZ3_7_Stage = PSZ3_7_Number_of_Stages, !- + IF PSZ3_7_Stage == 2, !- + IF PSZ3_7_Cool_Load < 0.6, !- + SET PSZ3_7_Timestep_Econ_Eff = PSZ3_7_MaxE, !- + ELSE, !- + SET PSZ3_7_ECO_Eff = 0-2.18919863612305, !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.674461284910428 * PSZ3_7_Cool_Load), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0.000459106275872404 * (OAT_F^2)), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.00000484778537945252 * (OAT_F^3)), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0.182915713033586 * OAwb_F), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.00382838660261133 * (OAwb_F^2)), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0.0000255567460240583 * (OAwb_F^3)), !- + SET PSZ3_7_Timestep_Econ_Eff = PSZ3_7_ECO_Eff, !- + ENDIF, !- + ELSE, !- + SET PSZ3_7_ECO_Eff = 2.36337942464462, !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.409939515512619 * PSZ3_7_Cool_Load), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.0565205596792225 * OAwb_F), !- + SET PSZ3_7_ECO_Eff = PSZ3_7_ECO_Eff + (0-0.0000632612294169389 * (OAT_F^2)), !- + SET PSZ3_7_Timestep_Econ_Eff = PSZ3_7_ECO_Eff + (0.000571724868775081 * (OAwb_F^2)), !- + ENDIF, !- + IF PSZ3_7_Timestep_Econ_Eff > PSZ3_7_MaxE, !- + SET PSZ3_7_Timestep_Econ_Eff = PSZ3_7_MaxE, !- + ELSEIF PSZ3_7_Timestep_Econ_Eff < (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + SET PSZ3_7_Timestep_Econ_Eff = (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:Program, + PSZ3_7_Set_Fan_Par, !- Name + IF PSZ3_7_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + SET PSZ3_7_FanPwrExponent = 2.2, !- + SET PSZ3_7_OAFrac = PSZ3_7_OAFlowMass/PSZ3_7_DesignFlowMass, !- + IF PSZ3_7_OAFrac < 0.66,!- + SET PSZ3_7_VenSpeed = 0.66, !- + SET PSZ3_7_Stage1Speed = 0.66, !- + ELSE, !- + SET PSZ3_7_VenSpeed = PSZ3_7_OAFrac, !- + SET PSZ3_7_Stage1Speed = PSZ3_7_OAFrac, !- + ENDIF, !- + SET PSZ3_7_Stage2Speed = 1.0, !- + SET PSZ3_7_HeatSpeed = 1.0; !- + + !Calculate the expected discharge air temperature if the system runs at its low speed + ! For each mode, (percent time in mode) * (fanSpeer^PwrExp) is the contribution to weighted fan power over time step + ! system fan power is directly proportional to static pressure, so this change linearly adjusts fan energy for speed control + + EnergyManagementSystem:Program, + PSZ3_7_Fan_Control, !- Name + IF PSZ3_7_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + IF PSZ3_7_HeatingRTF > 0,!- + SET PSZ3_7_Heating = PSZ3_7_HeatingRTF, !- + SET PSZ3_7_Ven = 1 - PSZ3_7_HeatingRTF, !- + SET PSZ3_7_Eco = 0, !- + SET PSZ3_7_Stage1 = 0, !- + SET PSZ3_7_Stage2 = 0, !- + ELSE, !- + SET PSZ3_7_Heating = 0, !- + SET PSZ3_7_EcoSpeed = PSZ3_7_VenSpeed, !- + IF PSZ3_7_SpeedRatio == 0, !- + IF PSZ3_7_RTF > 0, !- + SET PSZ3_7_Stage1 = PSZ3_7_RTF, !- + SET PSZ3_7_Stage2 = 0, !- + SET PSZ3_7_Ven = 1-PSZ3_7_RTF, !- + SET PSZ3_7_Eco = 0, !- + IF PSZ3_7_OAFlowMass > (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + SET PSZ3_7_Stage1Speed = 1.0, !- + ENDIF, !- + ELSE, !- + SET PSZ3_7_Stage1 = 0, !- + SET PSZ3_7_Stage2 = 0, !- + IF PSZ3_7_OAFlowMass > (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + SET PSZ3_7_Eco = 1.0, !- + SET PSZ3_7_Ven = 0, !- + SET PSZ3_7_Exp_DAT = PSZ3_7_DAT_Rqd - (1-PSZ3_7_VenSpeed) * AUDITORIUM_ZN_1_FLR_1_Temp, !- + SET PSZ3_7_Exp_DAT = PSZ3_7_Exp_DAT/PSZ3_7_VenSpeed, !- + IF OAT_F > PSZ3_7_Exp_DAT, !- + SET PSZ3_7_EcoSpeed = PSZ3_7_Stage2Speed, !- + ENDIF, !- + ELSE, !- + SET PSZ3_7_Eco = 0, !- + SET PSZ3_7_Ven = 1.0, !- + ENDIF, !- + ENDIF, !- + ELSE, !- + SET PSZ3_7_Stage1 = 1- PSZ3_7_SpeedRatio, !- + SET PSZ3_7_Stage2 = PSZ3_7_SpeedRatio, !- + SET PSZ3_7_Ven = 0, !- + SET PSZ3_7_Eco = 0, !- + IF PSZ3_7_OAFlowMass > (PSZ3_7_OADesignMass * PSZ3_7_OASch), !- + SET PSZ3_7_Stage1Speed = 1.0, !- + ENDIF, !- + ENDIF, !- + ENDIF, !- + SET PSZ3_7_FPR = PSZ3_7_Ven * (PSZ3_7_VenSpeed ^ PSZ3_7_FanPwrExponent), !- + SET PSZ3_7_FPR = PSZ3_7_FPR + PSZ3_7_Eco * (PSZ3_7_EcoSpeed ^ PSZ3_7_FanPwrExponent), !- + SET PSZ3_7_FPR_1 = PSZ3_7_Stage1 * (PSZ3_7_Stage1Speed ^ PSZ3_7_FanPwrExponent), !- + SET PSZ3_7_FPR = PSZ3_7_FPR + PSZ3_7_FPR_1, !- + SET PSZ3_7_FPR_2 = PSZ3_7_Stage2 * (PSZ3_7_Stage2Speed ^ PSZ3_7_FanPwrExponent), !- + SET PSZ3_7_FPR = PSZ3_7_FPR + PSZ3_7_FPR_2, !- + SET PSZ3_7_FPR_3 = PSZ3_7_Heating * (PSZ3_7_HeatSpeed ^ PSZ3_7_FanPwrExponent), !- + SET PSZ3_7_FanPwrRatio = PSZ3_7_FPR + PSZ3_7_FPR_3, !- + SET PSZ3_7_Fan_Pressure = PSZ3_7_Fan_DesignPressure * PSZ3_7_FanPwrRatio; !- + + EnergyManagementSystem:Program, + PSZ3_7_Set_Number_of_Stages, !- Name + SET PSZ3_7_Number_of_Stages = 2; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ3_7_Set_Number_of_Stages_CallingManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ3_7_Set_Number_of_Stages; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ3_7_ECO_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PSZ3_7_Economizer_CTRL_Prog; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ3_7_Fan_Parameter_manager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ3_7_Set_Fan_Par; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ3_7_Fan_Main_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + PSZ3_7_Fan_Control; !- Program Name 1 + +! Schedules for economizer operation + + Schedule:Constant,PSZ3_7_Timestep_Econ_Eff_SCH,Fraction,0.7; + +! +! EMS code for economizer and fan operation of PSZ-AC_4:8. +! +! 1. Sensors +! 2. Internal Variables +! 3. Actuators +! 4. Global Variables +! 5. Programs +! 6. Program Calling Managers +! +! +! Sensors + + EnergyManagementSystem:Sensor, + PSZ4_8_OASch, !- Name + Kitchen_Exhaust_SCH, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + KITCHEN_ZN_1_FLR_1_Temp, !- Name + KITCHEN_ZN_1_FLR_1 Air Node, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_OAFlowMass, !- Name + PSZ-AC_4:8_OAInlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_HeatingRTF, !- Name + PSZ-AC_4:8_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_RTF, !- Name + PSZ-AC_4:8_CoolC DXCoil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_SpeedRatio, !- Name + PSZ-AC_4:8_CoolC, !- Output:Variable or Output:Meter Index Key Name + Coil System Compressor Speed Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_DAT_Rqd, !- Name + PSZ-AC_4:8 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Setpoint Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ4_8_Econo_Status, !- Name + PSZ-AC_4:8, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Economizer Status; !- Output:Variable or Output:Meter Name + +! Internal Variables + + EnergyManagementSystem:InternalVariable, + PSZ4_8_Fan_DesignPressure, !- Name + PSZ-AC_4:8 fan, !- Internal Data Index Key Name + Fan Nominal Pressure Rise; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ4_8_DesignFlowMass, !- Name + PSZ-AC_4:8_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ4_8_OADesignMass, !- Name + PSZ-AC_4:8_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Minimum Mass Flow Rate; !- Internal Data Type + +! Actuators + + EnergyManagementSystem:Actuator, + PSZ4_8_Fan_Pressure, !- Name + PSZ-AC_4:8 fan, !- Actuated Component Unique Name + Fan, !- Actuated Component Type + Fan Pressure Rise; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + PSZ4_8_Timestep_Econ_Eff,!- Name + PSZ4_8_Timestep_Econ_Eff_SCH, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:GlobalVariable, + PSZ4_8_FanPwrExponent, !- Erl Variable 1 Name + PSZ4_8_Stage1Speed, !- Erl Variable 2 Name + PSZ4_8_Stage2Speed, !- Erl Variable 3 Name + PSZ4_8_HeatSpeed, !- + PSZ4_8_VenSpeed, !- + PSZ4_8_Number_of_Stages; !- + + EnergyManagementSystem:Program, + PSZ4_8_Economizer_CTRL_Prog, !- Name + SET PSZ4_8_Timestep_Econ_Eff = 0.7, !- Program Line 1 + SET PSZ4_8_MaxE = 0.7, !- Program Line 2 + SET PSZ4_8_DAT_Rqd = (PSZ4_8_DAT_Rqd*1.8) +32, !- + SET OAT_F = (OAT_F*1.8) +32, !- + SET OAwb_F = (OAwb_F*1.8) +32, !- + IF PSZ4_8_OAFlowMass > (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + SET PSZ4_8_Econo_Active = 1, !- + ELSE, !- + SET PSZ4_8_Econo_Active = 0, !- + ENDIF, !- + SET PSZ4_8_dT_Needed = 75 - PSZ4_8_DAT_Rqd, !- + SET PSZ4_8_Cool_Des_dT = ((98*0.15) + (75*(1-0.15))) - 55, !- + SET PSZ4_8_Cool_Load = PSZ4_8_dT_Needed/ PSZ4_8_Cool_Des_dT, !- + IF PSZ4_8_Cool_Load > 1, !- + SET PSZ4_8_Cool_Load = 1,!- + ELSEIF PSZ4_8_Cool_Load < 0, !- + SET PSZ4_8_Cool_Load = 0,!- + ENDIF, !- + IF PSZ4_8_Econo_Active == 1, !- + SET PSZ4_8_Stage = PSZ4_8_Number_of_Stages, !- + IF PSZ4_8_Stage == 2, !- + IF PSZ4_8_Cool_Load < 0.6, !- + SET PSZ4_8_Timestep_Econ_Eff = PSZ4_8_MaxE, !- + ELSE, !- + SET PSZ4_8_ECO_Eff = 0-2.18919863612305, !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.674461284910428 * PSZ4_8_Cool_Load), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0.000459106275872404 * (OAT_F^2)), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.00000484778537945252 * (OAT_F^3)), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0.182915713033586 * OAwb_F), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.00382838660261133 * (OAwb_F^2)), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0.0000255567460240583 * (OAwb_F^3)), !- + SET PSZ4_8_Timestep_Econ_Eff = PSZ4_8_ECO_Eff, !- + ENDIF, !- + ELSE, !- + SET PSZ4_8_ECO_Eff = 2.36337942464462, !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.409939515512619 * PSZ4_8_Cool_Load), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.0565205596792225 * OAwb_F), !- + SET PSZ4_8_ECO_Eff = PSZ4_8_ECO_Eff + (0-0.0000632612294169389 * (OAT_F^2)), !- + SET PSZ4_8_Timestep_Econ_Eff = PSZ4_8_ECO_Eff + (0.000571724868775081 * (OAwb_F^2)), !- + ENDIF, !- + IF PSZ4_8_Timestep_Econ_Eff > PSZ4_8_MaxE, !- + SET PSZ4_8_Timestep_Econ_Eff = PSZ4_8_MaxE, !- + ELSEIF PSZ4_8_Timestep_Econ_Eff < (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + SET PSZ4_8_Timestep_Econ_Eff = (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:Program, + PSZ4_8_Set_Fan_Par, !- Name + IF PSZ4_8_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + SET PSZ4_8_FanPwrExponent = 2.2, !- + SET PSZ4_8_OAFrac = PSZ4_8_OAFlowMass/PSZ4_8_DesignFlowMass, !- + IF PSZ4_8_OAFrac < 0.66,!- + SET PSZ4_8_VenSpeed = 0.66, !- + SET PSZ4_8_Stage1Speed = 0.66, !- + ELSE, !- + SET PSZ4_8_VenSpeed = PSZ4_8_OAFrac, !- + SET PSZ4_8_Stage1Speed = PSZ4_8_OAFrac, !- + ENDIF, !- + SET PSZ4_8_Stage2Speed = 1.0, !- + SET PSZ4_8_HeatSpeed = 1.0; !- + + !Calculate the expected discharge air temperature if the system runs at its low speed + ! For each mode, (percent time in mode) * (fanSpeer^PwrExp) is the contribution to weighted fan power over time step + ! system fan power is directly proportional to static pressure, so this change linearly adjusts fan energy for speed control + + EnergyManagementSystem:Program, + PSZ4_8_Fan_Control, !- Name + IF PSZ4_8_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + IF PSZ4_8_HeatingRTF > 0,!- + SET PSZ4_8_Heating = PSZ4_8_HeatingRTF, !- + SET PSZ4_8_Ven = 1 - PSZ4_8_HeatingRTF, !- + SET PSZ4_8_Eco = 0, !- + SET PSZ4_8_Stage1 = 0, !- + SET PSZ4_8_Stage2 = 0, !- + ELSE, !- + SET PSZ4_8_Heating = 0, !- + SET PSZ4_8_EcoSpeed = PSZ4_8_VenSpeed, !- + IF PSZ4_8_SpeedRatio == 0, !- + IF PSZ4_8_RTF > 0, !- + SET PSZ4_8_Stage1 = PSZ4_8_RTF, !- + SET PSZ4_8_Stage2 = 0, !- + SET PSZ4_8_Ven = 1-PSZ4_8_RTF, !- + SET PSZ4_8_Eco = 0, !- + IF PSZ4_8_OAFlowMass > (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + SET PSZ4_8_Stage1Speed = 1.0, !- + ENDIF, !- + ELSE, !- + SET PSZ4_8_Stage1 = 0, !- + SET PSZ4_8_Stage2 = 0, !- + IF PSZ4_8_OAFlowMass > (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + SET PSZ4_8_Eco = 1.0, !- + SET PSZ4_8_Ven = 0, !- + SET PSZ4_8_Exp_DAT = PSZ4_8_DAT_Rqd - (1-PSZ4_8_VenSpeed) * KITCHEN_ZN_1_FLR_1_Temp, !- + SET PSZ4_8_Exp_DAT = PSZ4_8_Exp_DAT/PSZ4_8_VenSpeed, !- + IF OAT_F > PSZ4_8_Exp_DAT, !- + SET PSZ4_8_EcoSpeed = PSZ4_8_Stage2Speed, !- + ENDIF, !- + ELSE, !- + SET PSZ4_8_Eco = 0, !- + SET PSZ4_8_Ven = 1.0, !- + ENDIF, !- + ENDIF, !- + ELSE, !- + SET PSZ4_8_Stage1 = 1- PSZ4_8_SpeedRatio, !- + SET PSZ4_8_Stage2 = PSZ4_8_SpeedRatio, !- + SET PSZ4_8_Ven = 0, !- + SET PSZ4_8_Eco = 0, !- + IF PSZ4_8_OAFlowMass > (PSZ4_8_OADesignMass * PSZ4_8_OASch), !- + SET PSZ4_8_Stage1Speed = 1.0, !- + ENDIF, !- + ENDIF, !- + ENDIF, !- + SET PSZ4_8_FPR = PSZ4_8_Ven * (PSZ4_8_VenSpeed ^ PSZ4_8_FanPwrExponent), !- + SET PSZ4_8_FPR = PSZ4_8_FPR + PSZ4_8_Eco * (PSZ4_8_EcoSpeed ^ PSZ4_8_FanPwrExponent), !- + SET PSZ4_8_FPR_1 = PSZ4_8_Stage1 * (PSZ4_8_Stage1Speed ^ PSZ4_8_FanPwrExponent), !- + SET PSZ4_8_FPR = PSZ4_8_FPR + PSZ4_8_FPR_1, !- + SET PSZ4_8_FPR_2 = PSZ4_8_Stage2 * (PSZ4_8_Stage2Speed ^ PSZ4_8_FanPwrExponent), !- + SET PSZ4_8_FPR = PSZ4_8_FPR + PSZ4_8_FPR_2, !- + SET PSZ4_8_FPR_3 = PSZ4_8_Heating * (PSZ4_8_HeatSpeed ^ PSZ4_8_FanPwrExponent), !- + SET PSZ4_8_FanPwrRatio = PSZ4_8_FPR + PSZ4_8_FPR_3, !- + SET PSZ4_8_Fan_Pressure = PSZ4_8_Fan_DesignPressure * PSZ4_8_FanPwrRatio; !- + + EnergyManagementSystem:Program, + PSZ4_8_Set_Number_of_Stages, !- Name + SET PSZ4_8_Number_of_Stages = 2; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ4_8_Set_Number_of_Stages_CallingManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ4_8_Set_Number_of_Stages; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ4_8_ECO_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PSZ4_8_Economizer_CTRL_Prog; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ4_8_Fan_Parameter_manager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ4_8_Set_Fan_Par; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ4_8_Fan_Main_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + PSZ4_8_Fan_Control; !- Program Name 1 + +! Schedules for economizer operation + + Schedule:Constant,PSZ4_8_Timestep_Econ_Eff_SCH,Fraction,0.7; + +! +! EMS code for economizer and fan operation of PSZ-AC_5:9. +! +! 1. Sensors +! 2. Internal Variables +! 3. Actuators +! 4. Global Variables +! 5. Programs +! 6. Program Calling Managers +! +! +! Sensors + + EnergyManagementSystem:Sensor, + PSZ5_9_OASch, !- Name + MinOA_MotorizedDamper_Sched, !- Output:Variable or Output:Meter Index Key Name + Schedule Value; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + CAFETERIA_ZN_1_FLR_1_Temp, !- Name + CAFETERIA_ZN_1_FLR_1 Air Node, !- Output:Variable or Output:Meter Index Key Name + System Node Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_OAFlowMass, !- Name + PSZ-AC_5:9_OAInlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Mass Flow Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_HeatingRTF, !- Name + PSZ-AC_5:9_HeatC, !- Output:Variable or Output:Meter Index Key Name + Heating Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_RTF, !- Name + PSZ-AC_5:9_CoolC DXCoil, !- Output:Variable or Output:Meter Index Key Name + Cooling Coil Runtime Fraction; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_SpeedRatio, !- Name + PSZ-AC_5:9_CoolC, !- Output:Variable or Output:Meter Index Key Name + Coil System Compressor Speed Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_DAT_Rqd, !- Name + PSZ-AC_5:9 Supply Equipment Outlet Node, !- Output:Variable or Output:Meter Index Key Name + System Node Setpoint Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + PSZ5_9_Econo_Status, !- Name + PSZ-AC_5:9, !- Output:Variable or Output:Meter Index Key Name + Air System Outdoor Air Economizer Status; !- Output:Variable or Output:Meter Name + +! Internal Variables + + EnergyManagementSystem:InternalVariable, + PSZ5_9_Fan_DesignPressure, !- Name + PSZ-AC_5:9 fan, !- Internal Data Index Key Name + Fan Nominal Pressure Rise; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ5_9_DesignFlowMass, !- Name + PSZ-AC_5:9_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Maximum Mass Flow Rate; !- Internal Data Type + + EnergyManagementSystem:InternalVariable, + PSZ5_9_OADesignMass, !- Name + PSZ-AC_5:9_OA_CONTROLLER,!- Internal Data Index Key Name + Outdoor Air Controller Minimum Mass Flow Rate; !- Internal Data Type + +! Actuators + + EnergyManagementSystem:Actuator, + PSZ5_9_Fan_Pressure, !- Name + PSZ-AC_5:9 fan, !- Actuated Component Unique Name + Fan, !- Actuated Component Type + Fan Pressure Rise; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + PSZ5_9_Timestep_Econ_Eff,!- Name + PSZ5_9_Timestep_Econ_Eff_SCH, !- Actuated Component Unique Name + Schedule:Constant, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:GlobalVariable, + PSZ5_9_FanPwrExponent, !- Erl Variable 1 Name + PSZ5_9_Stage1Speed, !- Erl Variable 2 Name + PSZ5_9_Stage2Speed, !- Erl Variable 3 Name + PSZ5_9_HeatSpeed, !- + PSZ5_9_VenSpeed, !- + PSZ5_9_Number_of_Stages; !- + + EnergyManagementSystem:Program, + PSZ5_9_Economizer_CTRL_Prog, !- Name + SET PSZ5_9_Timestep_Econ_Eff = 0.7, !- Program Line 1 + SET PSZ5_9_MaxE = 0.7, !- Program Line 2 + SET PSZ5_9_DAT_Rqd = (PSZ5_9_DAT_Rqd*1.8) +32, !- + SET OAT_F = (OAT_F*1.8) +32, !- + SET OAwb_F = (OAwb_F*1.8) +32, !- + IF PSZ5_9_OAFlowMass > (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + SET PSZ5_9_Econo_Active = 1, !- + ELSE, !- + SET PSZ5_9_Econo_Active = 0, !- + ENDIF, !- + SET PSZ5_9_dT_Needed = 75 - PSZ5_9_DAT_Rqd, !- + SET PSZ5_9_Cool_Des_dT = ((98*0.15) + (75*(1-0.15))) - 55, !- + SET PSZ5_9_Cool_Load = PSZ5_9_dT_Needed/ PSZ5_9_Cool_Des_dT, !- + IF PSZ5_9_Cool_Load > 1, !- + SET PSZ5_9_Cool_Load = 1,!- + ELSEIF PSZ5_9_Cool_Load < 0, !- + SET PSZ5_9_Cool_Load = 0,!- + ENDIF, !- + IF PSZ5_9_Econo_Active == 1, !- + SET PSZ5_9_Stage = PSZ5_9_Number_of_Stages, !- + IF PSZ5_9_Stage == 2, !- + IF PSZ5_9_Cool_Load < 0.6, !- + SET PSZ5_9_Timestep_Econ_Eff = PSZ5_9_MaxE, !- + ELSE, !- + SET PSZ5_9_ECO_Eff = 0-2.18919863612305, !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.674461284910428 * PSZ5_9_Cool_Load), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0.000459106275872404 * (OAT_F^2)), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.00000484778537945252 * (OAT_F^3)), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0.182915713033586 * OAwb_F), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.00382838660261133 * (OAwb_F^2)), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0.0000255567460240583 * (OAwb_F^3)), !- + SET PSZ5_9_Timestep_Econ_Eff = PSZ5_9_ECO_Eff, !- + ENDIF, !- + ELSE, !- + SET PSZ5_9_ECO_Eff = 2.36337942464462, !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.409939515512619 * PSZ5_9_Cool_Load), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.0565205596792225 * OAwb_F), !- + SET PSZ5_9_ECO_Eff = PSZ5_9_ECO_Eff + (0-0.0000632612294169389 * (OAT_F^2)), !- + SET PSZ5_9_Timestep_Econ_Eff = PSZ5_9_ECO_Eff + (0.000571724868775081 * (OAwb_F^2)), !- + ENDIF, !- + IF PSZ5_9_Timestep_Econ_Eff > PSZ5_9_MaxE, !- + SET PSZ5_9_Timestep_Econ_Eff = PSZ5_9_MaxE, !- + ELSEIF PSZ5_9_Timestep_Econ_Eff < (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + SET PSZ5_9_Timestep_Econ_Eff = (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:Program, + PSZ5_9_Set_Fan_Par, !- Name + IF PSZ5_9_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + SET PSZ5_9_FanPwrExponent = 2.2, !- + SET PSZ5_9_OAFrac = PSZ5_9_OAFlowMass/PSZ5_9_DesignFlowMass, !- + IF PSZ5_9_OAFrac < 0.66,!- + SET PSZ5_9_VenSpeed = 0.66, !- + SET PSZ5_9_Stage1Speed = 0.66, !- + ELSE, !- + SET PSZ5_9_VenSpeed = PSZ5_9_OAFrac, !- + SET PSZ5_9_Stage1Speed = PSZ5_9_OAFrac, !- + ENDIF, !- + SET PSZ5_9_Stage2Speed = 1.0, !- + SET PSZ5_9_HeatSpeed = 1.0; !- + + !Calculate the expected discharge air temperature if the system runs at its low speed + ! For each mode, (percent time in mode) * (fanSpeer^PwrExp) is the contribution to weighted fan power over time step + ! system fan power is directly proportional to static pressure, so this change linearly adjusts fan energy for speed control + + EnergyManagementSystem:Program, + PSZ5_9_Fan_Control, !- Name + IF PSZ5_9_Number_of_Stages == 1, !- Program Line 1 + Return, !- Program Line 2 + ENDIF, !- + IF PSZ5_9_HeatingRTF > 0,!- + SET PSZ5_9_Heating = PSZ5_9_HeatingRTF, !- + SET PSZ5_9_Ven = 1 - PSZ5_9_HeatingRTF, !- + SET PSZ5_9_Eco = 0, !- + SET PSZ5_9_Stage1 = 0, !- + SET PSZ5_9_Stage2 = 0, !- + ELSE, !- + SET PSZ5_9_Heating = 0, !- + SET PSZ5_9_EcoSpeed = PSZ5_9_VenSpeed, !- + IF PSZ5_9_SpeedRatio == 0, !- + IF PSZ5_9_RTF > 0, !- + SET PSZ5_9_Stage1 = PSZ5_9_RTF, !- + SET PSZ5_9_Stage2 = 0, !- + SET PSZ5_9_Ven = 1-PSZ5_9_RTF, !- + SET PSZ5_9_Eco = 0, !- + IF PSZ5_9_OAFlowMass > (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + SET PSZ5_9_Stage1Speed = 1.0, !- + ENDIF, !- + ELSE, !- + SET PSZ5_9_Stage1 = 0, !- + SET PSZ5_9_Stage2 = 0, !- + IF PSZ5_9_OAFlowMass > (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + SET PSZ5_9_Eco = 1.0, !- + SET PSZ5_9_Ven = 0, !- + SET PSZ5_9_Exp_DAT = PSZ5_9_DAT_Rqd - (1-PSZ5_9_VenSpeed) * CAFETERIA_ZN_1_FLR_1_Temp, !- + SET PSZ5_9_Exp_DAT = PSZ5_9_Exp_DAT/PSZ5_9_VenSpeed, !- + IF OAT_F > PSZ5_9_Exp_DAT, !- + SET PSZ5_9_EcoSpeed = PSZ5_9_Stage2Speed, !- + ENDIF, !- + ELSE, !- + SET PSZ5_9_Eco = 0, !- + SET PSZ5_9_Ven = 1.0, !- + ENDIF, !- + ENDIF, !- + ELSE, !- + SET PSZ5_9_Stage1 = 1- PSZ5_9_SpeedRatio, !- + SET PSZ5_9_Stage2 = PSZ5_9_SpeedRatio, !- + SET PSZ5_9_Ven = 0, !- + SET PSZ5_9_Eco = 0, !- + IF PSZ5_9_OAFlowMass > (PSZ5_9_OADesignMass * PSZ5_9_OASch), !- + SET PSZ5_9_Stage1Speed = 1.0, !- + ENDIF, !- + ENDIF, !- + ENDIF, !- + SET PSZ5_9_FPR = PSZ5_9_Ven * (PSZ5_9_VenSpeed ^ PSZ5_9_FanPwrExponent), !- + SET PSZ5_9_FPR = PSZ5_9_FPR + PSZ5_9_Eco * (PSZ5_9_EcoSpeed ^ PSZ5_9_FanPwrExponent), !- + SET PSZ5_9_FPR_1 = PSZ5_9_Stage1 * (PSZ5_9_Stage1Speed ^ PSZ5_9_FanPwrExponent), !- + SET PSZ5_9_FPR = PSZ5_9_FPR + PSZ5_9_FPR_1, !- + SET PSZ5_9_FPR_2 = PSZ5_9_Stage2 * (PSZ5_9_Stage2Speed ^ PSZ5_9_FanPwrExponent), !- + SET PSZ5_9_FPR = PSZ5_9_FPR + PSZ5_9_FPR_2, !- + SET PSZ5_9_FPR_3 = PSZ5_9_Heating * (PSZ5_9_HeatSpeed ^ PSZ5_9_FanPwrExponent), !- + SET PSZ5_9_FanPwrRatio = PSZ5_9_FPR + PSZ5_9_FPR_3, !- + SET PSZ5_9_Fan_Pressure = PSZ5_9_Fan_DesignPressure * PSZ5_9_FanPwrRatio; !- + + EnergyManagementSystem:Program, + PSZ5_9_Set_Number_of_Stages, !- Name + SET PSZ5_9_Number_of_Stages = 2; !- Program Line 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ5_9_Set_Number_of_Stages_CallingManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ5_9_Set_Number_of_Stages; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ5_9_ECO_Manager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + PSZ5_9_Economizer_CTRL_Prog; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ5_9_Fan_Parameter_manager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + PSZ5_9_Set_Fan_Par; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + PSZ5_9_Fan_Main_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + PSZ5_9_Fan_Control; !- Program Name 1 + +! Schedules for economizer operation + + Schedule:Constant,PSZ5_9_Timestep_Econ_Eff_SCH,Fraction,0.7; + +! Boiler Turndown EMS Implementation + + EnergyManagementSystem:GlobalVariable, + BoilerType, !- Erl Variable 1 Name + CapRated, !- Erl Variable 2 Name + EtRated, !- Erl Variable 3 Name + PLRx, !- + Ecx, !- + SkinLossRate; !- + + EnergyManagementSystem:Sensor, + BoilerPLR, !- Name + HeatSys1 Boiler, !- Output:Variable or Output:Meter Index Key Name + Boiler Part Load Ratio; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + BoilerCurve, !- Name + HEATSYS1 BOILER EFFICIENCY CURVE, !- Actuated Component Unique Name + Curve, !- Actuated Component Type + Curve Result; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SetBoilerPar, !- Name + SET CapRated = 1012337.26, !- Program Line 1 + SET EtRated = 0.8125, !- Program Line 2 + SET CapRated = (CapRated *3.412)/1000, !- + SET SkinLossRate = 0.02, !- + SET BoilerType = 1, !- + IF BoilerType == 1, !- + IF CapRated >10000, !- + SET PLRx = 0.2, !- + ELSEIF CapRated >5000, !- + SET PLRx = 0.25, !- + ELSEIF CapRated >1000, !- + SET PLRx = 0.33, !- + ELSE, !- + SET BoilerType = 2, !- + SET PLRx = 0.2, !- + ENDIF, !- + ELSE, !- + SET PLRx = 0.2, !- + ENDIF, !- + IF BoilerType == 1, !- + SET CurveX = 0.975 + 0.305 * PLRx - 0.527 * (PLRx^2) + 0.249 * (PLRx^3), !- + ELSE, !- + SET CurveX = 0.907 + 0.320 * PLRx - 0.420 * (PLRx^2) + 0.193 * (PLRx^3), !- + ENDIF, !- + SET LoadX = CapRated * PLRx, !- + SET Etx = CurveX * EtRated, !- + SET InputEx = LoadX/Etx, !- + SET SkinEx = CapRated * SkinLossRate, !- + SET Ecx = (LoadX + SkinEx)/InputEx; !- + + EnergyManagementSystem:Program, + SetBoilerCurve, !- Name + IF BoilerPLR >= PLRx, !- Program Line 1 + IF BoilerType == 1, !- Program Line 2 + SET BoilerCurve = 0.975 + 0.305*BoilerPLR - 0.527*(BoilerPLR^2) + 0.249*(BoilerPLR^3), !- + ELSE, !- + SET BoilerCurve = 0.907 + 0.320*BoilerPLR - 0.420*(BoilerPLR^2) + 0.193*(BoilerPLR^3), !- + ENDIF, !- + ELSE, !- + IF BoilerPLR == 0, !- + SET BoilerCurve = NULL, !- + ELSE, !- + IF BoilerPLR <0.05, !- + SET BoilerCurve = (0.05/(0.05 + SkinLossRate)) * (Ecx/EtRated), !- + ELSE, !- + SET BoilerCurve = (BoilerPLR/(BoilerPLR + SkinLossRate)) * (Ecx/EtRated), !- + ENDIF, !- + ENDIF, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + BoilerParManager, !- Name + BeginNewEnvironment, !- EnergyPlus Model Calling Point + SetBoilerPar; !- Program Name 1 + + EnergyManagementSystem:ProgramCallingManager, + BoilerCurveManager, !- Name + InsideHVACSystemIterationLoop, !- EnergyPlus Model Calling Point + SetBoilerCurve; !- Program Name 1 + + EnergyManagementSystem:Sensor, + OAT, !- Name + Environment, !- Output:Variable or Output:Meter Index Key Name + Site Outdoor Air Drybulb Temperature; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Actuator, + CLGSETP_SCH_Actuator, !- Name + CLGSETP_SCH_Yes_Optimum, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:Actuator, + HTGSETP_SCH_Actuator, !- Name + HTGSETP_SCH_Yes_Optimum, !- Actuated Component Unique Name + Schedule:Compact, !- Actuated Component Type + Schedule Value; !- Actuated Component Control Type + + EnergyManagementSystem:ProgramCallingManager, + OA_BASED_OPTIMUM_START_EMS_Program Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + OA_BASED_OPTIMUM_START_EMS_Program; !- Program Name 1 + + EnergyManagementSystem:Program, + OA_BASED_OPTIMUM_START_EMS_Program, !- Name + IF DaylightSavings==0 && DayOfWeek>1 && DayOfWeek<7 && Hour==6 && OAT<23.9 && OAT>1.7, !- Program Line 1 + SET CLGSETP_SCH_Actuator = 29.44, !- Program Line 2 + SET HTGSETP_SCH_Actuator = 15.6, !- + ELSEIF DaylightSavings==1 && DayOfWeek>1 && DayOfWeek<7 && Hour==5 && OAT<23.9 && OAT>1.7, !- + SET CLGSETP_SCH_Actuator = 29.44, !- + SET HTGSETP_SCH_Actuator = 15.6, !- + ELSE, !- + SET CLGSETP_SCH_Actuator = NULL, !- + SET HTGSETP_SCH_Actuator = NULL, !- + ENDIF; !- + +!- no Supply fan size-based optimum start EMS is used +!- Implementation of Addendum_AH 90.1-2013 for Interior lighting control through EMS override +!- for zone "cCL1_Pod_1_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL1_Pod_1_ZN_1_FLR_1_LSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_1_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_1_ZN_1_FLR_1_Area, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_1_ZN_1_FLR_1_LAr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_1_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL1_Pod_1_ZN_1_FLR_1_LSr_IP=0.093*cCL1_Pod_1_ZN_1_FLR_1_LSr/cCL1_Pod_1_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL1_Pod_1_ZN_1_FLR_1_OSr <= 0) && (cCL1_Pod_1_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_1_ZN_1_FLR_1_LAr = 0.02*cCL1_Pod_1_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_1_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_1_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_1_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_1_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl1_Pod_1_ZN_1_FLR_1_LSr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_1_ZN_1_FLR_1_OSr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_1_ZN_1_FLR_1_Area, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_1_ZN_1_FLR_1_LAr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_1_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl1_Pod_1_ZN_1_FLR_1_LSr_IP=0.093*mCl1_Pod_1_ZN_1_FLR_1_LSr/mCl1_Pod_1_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl1_Pod_1_ZN_1_FLR_1_OSr <= 0) && (mCl1_Pod_1_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_1_ZN_1_FLR_1_LAr = 0.02*mCl1_Pod_1_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_1_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_1_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_1_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD1_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cPOD1_ZN_1_FLR_1_LSr, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD1_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD1_ZN_1_FLR_1_Area, !- Name + Corridor_Pod_1_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD1_ZN_1_FLR_1_LAr, !- Name + Corridor_Pod_1_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD1_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cPOD1_ZN_1_FLR_1_LSr_IP=0.093*cPOD1_ZN_1_FLR_1_LSr/cPOD1_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cPOD1_ZN_1_FLR_1_OSr <= 0) && (cPOD1_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD1_ZN_1_FLR_1_LAr = 0.02*cPOD1_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cPOD1_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD1_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD1_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_1_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL2_Pod_1_ZN_1_FLR_1_LSr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_1_ZN_1_FLR_1_OSr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_1_ZN_1_FLR_1_Area, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_1_ZN_1_FLR_1_LAr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_1_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL2_Pod_1_ZN_1_FLR_1_LSr_IP=0.093*cCL2_Pod_1_ZN_1_FLR_1_LSr/cCL2_Pod_1_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL2_Pod_1_ZN_1_FLR_1_OSr <= 0) && (cCL2_Pod_1_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_1_ZN_1_FLR_1_LAr = 0.02*cCL2_Pod_1_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_1_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_1_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_1_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_1_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl2_Pod_1_ZN_1_FLR_1_LSr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_1_ZN_1_FLR_1_OSr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_1_ZN_1_FLR_1_Area, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_1_ZN_1_FLR_1_LAr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_1_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl2_Pod_1_ZN_1_FLR_1_LSr_IP=0.093*mCl2_Pod_1_ZN_1_FLR_1_LSr/mCl2_Pod_1_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl2_Pod_1_ZN_1_FLR_1_OSr <= 0) && (mCl2_Pod_1_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_1_ZN_1_FLR_1_LAr = 0.02*mCl2_Pod_1_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_1_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_1_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_1_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL1_Pod_2_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL1_Pod_2_ZN_1_FLR_1_LSr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_2_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_2_ZN_1_FLR_1_Area, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_2_ZN_1_FLR_1_LAr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_2_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL1_Pod_2_ZN_1_FLR_1_LSr_IP=0.093*cCL1_Pod_2_ZN_1_FLR_1_LSr/cCL1_Pod_2_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL1_Pod_2_ZN_1_FLR_1_OSr <= 0) && (cCL1_Pod_2_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_2_ZN_1_FLR_1_LAr = 0.02*cCL1_Pod_2_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_2_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_2_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_2_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_2_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl1_Pod_2_ZN_1_FLR_1_LSr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_2_ZN_1_FLR_1_OSr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_2_ZN_1_FLR_1_Area, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_2_ZN_1_FLR_1_LAr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_2_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl1_Pod_2_ZN_1_FLR_1_LSr_IP=0.093*mCl1_Pod_2_ZN_1_FLR_1_LSr/mCl1_Pod_2_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl1_Pod_2_ZN_1_FLR_1_OSr <= 0) && (mCl1_Pod_2_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_2_ZN_1_FLR_1_LAr = 0.02*mCl1_Pod_2_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_2_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_2_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_2_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD2_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cPOD2_ZN_1_FLR_1_LSr, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD2_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD2_ZN_1_FLR_1_Area, !- Name + Corridor_Pod_2_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD2_ZN_1_FLR_1_LAr, !- Name + Corridor_Pod_2_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD2_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cPOD2_ZN_1_FLR_1_LSr_IP=0.093*cPOD2_ZN_1_FLR_1_LSr/cPOD2_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cPOD2_ZN_1_FLR_1_OSr <= 0) && (cPOD2_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD2_ZN_1_FLR_1_LAr = 0.02*cPOD2_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cPOD2_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD2_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD2_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_2_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL2_Pod_2_ZN_1_FLR_1_LSr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_2_ZN_1_FLR_1_OSr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_2_ZN_1_FLR_1_Area, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_2_ZN_1_FLR_1_LAr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_2_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL2_Pod_2_ZN_1_FLR_1_LSr_IP=0.093*cCL2_Pod_2_ZN_1_FLR_1_LSr/cCL2_Pod_2_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL2_Pod_2_ZN_1_FLR_1_OSr <= 0) && (cCL2_Pod_2_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_2_ZN_1_FLR_1_LAr = 0.02*cCL2_Pod_2_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_2_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_2_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_2_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_2_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl2_Pod_2_ZN_1_FLR_1_LSr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_2_ZN_1_FLR_1_OSr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_2_ZN_1_FLR_1_Area, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_2_ZN_1_FLR_1_LAr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_2_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl2_Pod_2_ZN_1_FLR_1_LSr_IP=0.093*mCl2_Pod_2_ZN_1_FLR_1_LSr/mCl2_Pod_2_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl2_Pod_2_ZN_1_FLR_1_OSr <= 0) && (mCl2_Pod_2_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_2_ZN_1_FLR_1_LAr = 0.02*mCl2_Pod_2_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_2_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_2_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_2_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL1_Pod_3_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL1_Pod_3_ZN_1_FLR_1_LSr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_3_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_3_ZN_1_FLR_1_Area, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_3_ZN_1_FLR_1_LAr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_3_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL1_Pod_3_ZN_1_FLR_1_LSr_IP=0.093*cCL1_Pod_3_ZN_1_FLR_1_LSr/cCL1_Pod_3_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL1_Pod_3_ZN_1_FLR_1_OSr <= 0) && (cCL1_Pod_3_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_3_ZN_1_FLR_1_LAr = 0.02*cCL1_Pod_3_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_3_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_3_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_3_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_3_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl1_Pod_3_ZN_1_FLR_1_LSr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_3_ZN_1_FLR_1_OSr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_3_ZN_1_FLR_1_Area, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_3_ZN_1_FLR_1_LAr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_3_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl1_Pod_3_ZN_1_FLR_1_LSr_IP=0.093*mCl1_Pod_3_ZN_1_FLR_1_LSr/mCl1_Pod_3_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl1_Pod_3_ZN_1_FLR_1_OSr <= 0) && (mCl1_Pod_3_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_3_ZN_1_FLR_1_LAr = 0.02*mCl1_Pod_3_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_3_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_3_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_3_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD3_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cPOD3_ZN_1_FLR_1_LSr, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD3_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD3_ZN_1_FLR_1_Area, !- Name + Corridor_Pod_3_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD3_ZN_1_FLR_1_LAr, !- Name + Corridor_Pod_3_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD3_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cPOD3_ZN_1_FLR_1_LSr_IP=0.093*cPOD3_ZN_1_FLR_1_LSr/cPOD3_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cPOD3_ZN_1_FLR_1_OSr <= 0) && (cPOD3_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD3_ZN_1_FLR_1_LAr = 0.02*cPOD3_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cPOD3_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD3_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD3_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_3_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + cCL2_Pod_3_ZN_1_FLR_1_LSr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_3_ZN_1_FLR_1_OSr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_3_ZN_1_FLR_1_Area, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_3_ZN_1_FLR_1_LAr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_3_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET cCL2_Pod_3_ZN_1_FLR_1_LSr_IP=0.093*cCL2_Pod_3_ZN_1_FLR_1_LSr/cCL2_Pod_3_ZN_1_FLR_1_Area, !- Program Line 1 + IF (cCL2_Pod_3_ZN_1_FLR_1_OSr <= 0) && (cCL2_Pod_3_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_3_ZN_1_FLR_1_LAr = 0.02*cCL2_Pod_3_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_3_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_3_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_3_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_3_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + mCl2_Pod_3_ZN_1_FLR_1_LSr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_3_ZN_1_FLR_1_OSr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_3_ZN_1_FLR_1_Area, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_3_ZN_1_FLR_1_LAr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_3_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET mCl2_Pod_3_ZN_1_FLR_1_LSr_IP=0.093*mCl2_Pod_3_ZN_1_FLR_1_LSr/mCl2_Pod_3_ZN_1_FLR_1_Area, !- Program Line 1 + IF (mCl2_Pod_3_ZN_1_FLR_1_OSr <= 0) && (mCl2_Pod_3_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_3_ZN_1_FLR_1_LAr = 0.02*mCl2_Pod_3_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_3_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_3_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_3_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "AUX_GYM_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + AUX_GYM_ZN_1_FLR_1_LSr, !- Name + AUX_GYM_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + AUX_GYM_ZN_1_FLR_1_OSr, !- Name + AUX_GYM_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + AUX_GYM_ZN_1_FLR_1_Area, !- Name + AUX_GYM_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + AUX_GYM_ZN_1_FLR_1_LAr, !- Name + AUX_GYM_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_AUX_GYM_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET AUX_GYM_ZN_1_FLR_1_LSr_IP=0.093*AUX_GYM_ZN_1_FLR_1_LSr/AUX_GYM_ZN_1_FLR_1_Area, !- Program Line 1 + IF (AUX_GYM_ZN_1_FLR_1_OSr <= 0) && (AUX_GYM_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET AUX_GYM_ZN_1_FLR_1_LAr = 0.02*AUX_GYM_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET AUX_GYM_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_AUX_GYM_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_AUX_GYM_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "AUDITORIUM_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + AUDITORIUM_ZN_1_FLR_1_LSr, !- Name + AUDITORIUM_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + AUDITORIUM_ZN_1_FLR_1_OSr, !- Name + AUDITORIUM_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + AUDITORIUM_ZN_1_FLR_1_Area, !- Name + AUDITORIUM_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + AUDITORIUM_ZN_1_FLR_1_LAr, !- Name + AUDITORIUM_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_AUDITORIUM_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET AUDITORIUM_ZN_1_FLR_1_LSr_IP=0.093*AUDITORIUM_ZN_1_FLR_1_LSr/AUDITORIUM_ZN_1_FLR_1_Area, !- Program Line 1 + IF (AUDITORIUM_ZN_1_FLR_1_OSr <= 0) && (AUDITORIUM_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET AUDITORIUM_ZN_1_FLR_1_LAr = 0.02*AUDITORIUM_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET AUDITORIUM_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_AUDITORIUM_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_AUDITORIUM_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Main_Corridor_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Main_Corridor_ZN_1_FLR_1_LSr, !- Name + Main_Corridor_ZN_1_FLR_1,!- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Main_Corridor_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Main_Corridor_ZN_1_FLR_1_Area, !- Name + Main_Corridor_ZN_1_FLR_1,!- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Main_Corridor_ZN_1_FLR_1_LAr, !- Name + Main_Corridor_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Main_Corridor_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Main_Corridor_ZN_1_FLR_1_LSr_IP=0.093*Main_Corridor_ZN_1_FLR_1_LSr/Main_Corridor_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Main_Corridor_ZN_1_FLR_1_OSr <= 0) && (Main_Corridor_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Main_Corridor_ZN_1_FLR_1_LAr = 0.02*Main_Corridor_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Main_Corridor_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Main_Corridor_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Main_Corridor_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Lobby_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Lobby_ZN_1_FLR_1_LSr, !- Name + Lobby_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Lobby_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Lobby_ZN_1_FLR_1_Area, !- Name + Lobby_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Lobby_ZN_1_FLR_1_LAr, !- Name + Lobby_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Lobby_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Lobby_ZN_1_FLR_1_LSr_IP=0.093*Lobby_ZN_1_FLR_1_LSr/Lobby_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Lobby_ZN_1_FLR_1_OSr <= 0) && (Lobby_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Lobby_ZN_1_FLR_1_LAr = 0.02*Lobby_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Lobby_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Lobby_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Lobby_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Mech_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Mech_ZN_1_FLR_1_LSr, !- Name + Mech_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Mech_ZN_1_FLR_1_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Mech_ZN_1_FLR_1_Area, !- Name + Mech_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Mech_ZN_1_FLR_1_LAr, !- Name + Mech_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Mech_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Mech_ZN_1_FLR_1_LSr_IP=0.093*Mech_ZN_1_FLR_1_LSr/Mech_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Mech_ZN_1_FLR_1_OSr <= 0) && (Mech_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Mech_ZN_1_FLR_1_LAr = 0.02*Mech_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Mech_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Mech_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Mech_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "BATHROOMS_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + BATHROOMS_ZN_1_FLR_1_LSr,!- Name + BATHROOMS_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + BATHROOMS_ZN_1_FLR_1_OSr,!- Name + Corner_Class_1_Pod_1_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + BATHROOMS_ZN_1_FLR_1_Area, !- Name + BATHROOMS_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + BATHROOMS_ZN_1_FLR_1_LAr,!- Name + BATHROOMS_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_BATHROOMS_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET BATHROOMS_ZN_1_FLR_1_LSr_IP=0.093*BATHROOMS_ZN_1_FLR_1_LSr/BATHROOMS_ZN_1_FLR_1_Area, !- Program Line 1 + IF (BATHROOMS_ZN_1_FLR_1_OSr <= 0) && (BATHROOMS_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET BATHROOMS_ZN_1_FLR_1_LAr = 0.02*BATHROOMS_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET BATHROOMS_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_BATHROOMS_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_BATHROOMS_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Offices_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Offices_ZN_1_FLR_1_LSr, !- Name + Offices_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Offices_ZN_1_FLR_1_OSr, !- Name + Offices_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Offices_ZN_1_FLR_1_Area, !- Name + Offices_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Offices_ZN_1_FLR_1_LAr, !- Name + Offices_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Offices_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Offices_ZN_1_FLR_1_LSr_IP=0.093*Offices_ZN_1_FLR_1_LSr/Offices_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Offices_ZN_1_FLR_1_OSr <= 0) && (Offices_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Offices_ZN_1_FLR_1_LAr = 0.02*Offices_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Offices_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Offices_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Offices_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Gym_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Gym_ZN_1_FLR_1_LSr, !- Name + Gym_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Gym_ZN_1_FLR_1_OSr, !- Name + Gym_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Gym_ZN_1_FLR_1_Area, !- Name + Gym_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Gym_ZN_1_FLR_1_LAr, !- Name + Gym_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Gym_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Gym_ZN_1_FLR_1_LSr_IP=0.093*Gym_ZN_1_FLR_1_LSr/Gym_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Gym_ZN_1_FLR_1_OSr <= 0) && (Gym_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Gym_ZN_1_FLR_1_LAr = 0.02*Gym_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Gym_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Gym_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Gym_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Kitchen_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Kitchen_ZN_1_FLR_1_LSr, !- Name + Kitchen_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Kitchen_ZN_1_FLR_1_OSr, !- Name + Kitchen_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Kitchen_ZN_1_FLR_1_Area, !- Name + Kitchen_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Kitchen_ZN_1_FLR_1_LAr, !- Name + Kitchen_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Kitchen_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Kitchen_ZN_1_FLR_1_LSr_IP=0.093*Kitchen_ZN_1_FLR_1_LSr/Kitchen_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Kitchen_ZN_1_FLR_1_OSr <= 0) && (Kitchen_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Kitchen_ZN_1_FLR_1_LAr = 0.02*Kitchen_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Kitchen_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Kitchen_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Kitchen_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +!- for zone "Cafeteria_ZN_1_FLR_1" + + EnergyManagementSystem:Sensor, + Cafeteria_ZN_1_FLR_1_LSr,!- Name + Cafeteria_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Cafeteria_ZN_1_FLR_1_OSr,!- Name + Cafeteria_ZN_1_FLR_1, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Cafeteria_ZN_1_FLR_1_Area, !- Name + Cafeteria_ZN_1_FLR_1, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Cafeteria_ZN_1_FLR_1_LAr,!- Name + Cafeteria_ZN_1_FLR_1_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Cafeteria_ZN_1_FLR_1_Light_EMS_Program, !- Name + SET Cafeteria_ZN_1_FLR_1_LSr_IP=0.093*Cafeteria_ZN_1_FLR_1_LSr/Cafeteria_ZN_1_FLR_1_Area, !- Program Line 1 + IF (Cafeteria_ZN_1_FLR_1_OSr <= 0) && (Cafeteria_ZN_1_FLR_1_LSr_IP >= 0.02), !- Program Line 2 + SET Cafeteria_ZN_1_FLR_1_LAr = 0.02*Cafeteria_ZN_1_FLR_1_Area/0.09290304, !- + ELSE, !- + SET Cafeteria_ZN_1_FLR_1_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Cafeteria_ZN_1_FLR_1_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Cafeteria_ZN_1_FLR_1_Light_EMS_Program; !- Program Name 1 + +! the rest is for floor 2 +!- for zone "cCL1_Pod_1_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL1_Pod_1_ZN_1_FLR_2_LSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_1_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_1_ZN_1_FLR_2_Area, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_1_ZN_1_FLR_2_LAr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_1_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL1_Pod_1_ZN_1_FLR_2_LSr_IP=0.093*cCL1_Pod_1_ZN_1_FLR_2_LSr/cCL1_Pod_1_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL1_Pod_1_ZN_1_FLR_2_OSr <= 0) && (cCL1_Pod_1_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_1_ZN_1_FLR_2_LAr = 0.02*cCL1_Pod_1_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_1_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_1_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_1_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_1_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl1_Pod_1_ZN_1_FLR_2_LSr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_1_ZN_1_FLR_2_OSr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_1_ZN_1_FLR_2_Area, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_1_ZN_1_FLR_2_LAr, !- Name + Mult_Class_1_Pod_1_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_1_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl1_Pod_1_ZN_1_FLR_2_LSr_IP=0.093*mCl1_Pod_1_ZN_1_FLR_2_LSr/mCl1_Pod_1_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl1_Pod_1_ZN_1_FLR_2_OSr <= 0) && (mCl1_Pod_1_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_1_ZN_1_FLR_2_LAr = 0.02*mCl1_Pod_1_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_1_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_1_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_1_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD1_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cPOD1_ZN_1_FLR_2_LSr, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD1_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD1_ZN_1_FLR_2_Area, !- Name + Corridor_Pod_1_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD1_ZN_1_FLR_2_LAr, !- Name + Corridor_Pod_1_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD1_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cPOD1_ZN_1_FLR_2_LSr_IP=0.093*cPOD1_ZN_1_FLR_2_LSr/cPOD1_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cPOD1_ZN_1_FLR_2_OSr <= 0) && (cPOD1_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD1_ZN_1_FLR_2_LAr = 0.02*cPOD1_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cPOD1_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD1_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD1_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_1_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL2_Pod_1_ZN_1_FLR_2_LSr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_1_ZN_1_FLR_2_OSr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_1_ZN_1_FLR_2_Area, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_1_ZN_1_FLR_2_LAr, !- Name + Corner_Class_2_Pod_1_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_1_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL2_Pod_1_ZN_1_FLR_2_LSr_IP=0.093*cCL2_Pod_1_ZN_1_FLR_2_LSr/cCL2_Pod_1_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL2_Pod_1_ZN_1_FLR_2_OSr <= 0) && (cCL2_Pod_1_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_1_ZN_1_FLR_2_LAr = 0.02*cCL2_Pod_1_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_1_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_1_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_1_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_1_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl2_Pod_1_ZN_1_FLR_2_LSr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_1_ZN_1_FLR_2_OSr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_1_ZN_1_FLR_2_Area, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_1_ZN_1_FLR_2_LAr, !- Name + Mult_Class_2_Pod_1_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_1_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl2_Pod_1_ZN_1_FLR_2_LSr_IP=0.093*mCl2_Pod_1_ZN_1_FLR_2_LSr/mCl2_Pod_1_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl2_Pod_1_ZN_1_FLR_2_OSr <= 0) && (mCl2_Pod_1_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_1_ZN_1_FLR_2_LAr = 0.02*mCl2_Pod_1_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_1_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_1_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_1_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL1_Pod_2_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL1_Pod_2_ZN_1_FLR_2_LSr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_2_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_2_ZN_1_FLR_2_Area, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_2_ZN_1_FLR_2_LAr, !- Name + Corner_Class_1_Pod_2_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_2_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL1_Pod_2_ZN_1_FLR_2_LSr_IP=0.093*cCL1_Pod_2_ZN_1_FLR_2_LSr/cCL1_Pod_2_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL1_Pod_2_ZN_1_FLR_2_OSr <= 0) && (cCL1_Pod_2_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_2_ZN_1_FLR_2_LAr = 0.02*cCL1_Pod_2_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_2_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_2_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_2_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_2_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl1_Pod_2_ZN_1_FLR_2_LSr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_2_ZN_1_FLR_2_OSr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_2_ZN_1_FLR_2_Area, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_2_ZN_1_FLR_2_LAr, !- Name + Mult_Class_1_Pod_2_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_2_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl1_Pod_2_ZN_1_FLR_2_LSr_IP=0.093*mCl1_Pod_2_ZN_1_FLR_2_LSr/mCl1_Pod_2_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl1_Pod_2_ZN_1_FLR_2_OSr <= 0) && (mCl1_Pod_2_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_2_ZN_1_FLR_2_LAr = 0.02*mCl1_Pod_2_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_2_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_2_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_2_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD2_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cPOD2_ZN_1_FLR_2_LSr, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD2_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD2_ZN_1_FLR_2_Area, !- Name + Corridor_Pod_2_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD2_ZN_1_FLR_2_LAr, !- Name + Corridor_Pod_2_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD2_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cPOD2_ZN_1_FLR_2_LSr_IP=0.093*cPOD2_ZN_1_FLR_2_LSr/cPOD2_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cPOD2_ZN_1_FLR_2_OSr <= 0) && (cPOD2_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD2_ZN_1_FLR_2_LAr = 0.02*cPOD2_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cPOD2_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD2_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD2_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_2_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL2_Pod_2_ZN_1_FLR_2_LSr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_2_ZN_1_FLR_2_OSr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_2_ZN_1_FLR_2_Area, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_2_ZN_1_FLR_2_LAr, !- Name + Corner_Class_2_Pod_2_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_2_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL2_Pod_2_ZN_1_FLR_2_LSr_IP=0.093*cCL2_Pod_2_ZN_1_FLR_2_LSr/cCL2_Pod_2_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL2_Pod_2_ZN_1_FLR_2_OSr <= 0) && (cCL2_Pod_2_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_2_ZN_1_FLR_2_LAr = 0.02*cCL2_Pod_2_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_2_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_2_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_2_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_2_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl2_Pod_2_ZN_1_FLR_2_LSr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_2_ZN_1_FLR_2_OSr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_2_ZN_1_FLR_2_Area, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_2_ZN_1_FLR_2_LAr, !- Name + Mult_Class_2_Pod_2_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_2_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl2_Pod_2_ZN_1_FLR_2_LSr_IP=0.093*mCl2_Pod_2_ZN_1_FLR_2_LSr/mCl2_Pod_2_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl2_Pod_2_ZN_1_FLR_2_OSr <= 0) && (mCl2_Pod_2_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_2_ZN_1_FLR_2_LAr = 0.02*mCl2_Pod_2_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_2_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_2_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_2_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL1_Pod_3_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL1_Pod_3_ZN_1_FLR_2_LSr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL1_Pod_3_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL1_Pod_3_ZN_1_FLR_2_Area, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL1_Pod_3_ZN_1_FLR_2_LAr, !- Name + Corner_Class_1_Pod_3_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL1_Pod_3_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL1_Pod_3_ZN_1_FLR_2_LSr_IP=0.093*cCL1_Pod_3_ZN_1_FLR_2_LSr/cCL1_Pod_3_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL1_Pod_3_ZN_1_FLR_2_OSr <= 0) && (cCL1_Pod_3_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL1_Pod_3_ZN_1_FLR_2_LAr = 0.02*cCL1_Pod_3_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL1_Pod_3_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL1_Pod_3_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL1_Pod_3_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl1_Pod_3_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl1_Pod_3_ZN_1_FLR_2_LSr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl1_Pod_3_ZN_1_FLR_2_OSr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl1_Pod_3_ZN_1_FLR_2_Area, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl1_Pod_3_ZN_1_FLR_2_LAr, !- Name + Mult_Class_1_Pod_3_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl1_Pod_3_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl1_Pod_3_ZN_1_FLR_2_LSr_IP=0.093*mCl1_Pod_3_ZN_1_FLR_2_LSr/mCl1_Pod_3_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl1_Pod_3_ZN_1_FLR_2_OSr <= 0) && (mCl1_Pod_3_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl1_Pod_3_ZN_1_FLR_2_LAr = 0.02*mCl1_Pod_3_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl1_Pod_3_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl1_Pod_3_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl1_Pod_3_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cPOD3_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cPOD3_ZN_1_FLR_2_LSr, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cPOD3_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cPOD3_ZN_1_FLR_2_Area, !- Name + Corridor_Pod_3_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cPOD3_ZN_1_FLR_2_LAr, !- Name + Corridor_Pod_3_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cPOD3_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cPOD3_ZN_1_FLR_2_LSr_IP=0.093*cPOD3_ZN_1_FLR_2_LSr/cPOD3_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cPOD3_ZN_1_FLR_2_OSr <= 0) && (cPOD3_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cPOD3_ZN_1_FLR_2_LAr = 0.02*cPOD3_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cPOD3_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cPOD3_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cPOD3_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "cCL2_Pod_3_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + cCL2_Pod_3_ZN_1_FLR_2_LSr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + cCL2_Pod_3_ZN_1_FLR_2_OSr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + cCL2_Pod_3_ZN_1_FLR_2_Area, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + cCL2_Pod_3_ZN_1_FLR_2_LAr, !- Name + Corner_Class_2_Pod_3_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_cCL2_Pod_3_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET cCL2_Pod_3_ZN_1_FLR_2_LSr_IP=0.093*cCL2_Pod_3_ZN_1_FLR_2_LSr/cCL2_Pod_3_ZN_1_FLR_2_Area, !- Program Line 1 + IF (cCL2_Pod_3_ZN_1_FLR_2_OSr <= 0) && (cCL2_Pod_3_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET cCL2_Pod_3_ZN_1_FLR_2_LAr = 0.02*cCL2_Pod_3_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET cCL2_Pod_3_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_cCL2_Pod_3_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_cCL2_Pod_3_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "mCl2_Pod_3_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + mCl2_Pod_3_ZN_1_FLR_2_LSr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + mCl2_Pod_3_ZN_1_FLR_2_OSr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + mCl2_Pod_3_ZN_1_FLR_2_Area, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + mCl2_Pod_3_ZN_1_FLR_2_LAr, !- Name + Mult_Class_2_Pod_3_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_mCl2_Pod_3_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET mCl2_Pod_3_ZN_1_FLR_2_LSr_IP=0.093*mCl2_Pod_3_ZN_1_FLR_2_LSr/mCl2_Pod_3_ZN_1_FLR_2_Area, !- Program Line 1 + IF (mCl2_Pod_3_ZN_1_FLR_2_OSr <= 0) && (mCl2_Pod_3_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET mCl2_Pod_3_ZN_1_FLR_2_LAr = 0.02*mCl2_Pod_3_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET mCl2_Pod_3_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_mCl2_Pod_3_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_mCl2_Pod_3_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "Main_Corridor_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + Main_Corridor_ZN_1_FLR_2_LSr, !- Name + Main_Corridor_ZN_1_FLR_2,!- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Main_Corridor_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Main_Corridor_ZN_1_FLR_2_Area, !- Name + Main_Corridor_ZN_1_FLR_2,!- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Main_Corridor_ZN_1_FLR_2_LAr, !- Name + Main_Corridor_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Main_Corridor_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET Main_Corridor_ZN_1_FLR_2_LSr_IP=0.093*Main_Corridor_ZN_1_FLR_2_LSr/Main_Corridor_ZN_1_FLR_2_Area, !- Program Line 1 + IF (Main_Corridor_ZN_1_FLR_2_OSr <= 0) && (Main_Corridor_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET Main_Corridor_ZN_1_FLR_2_LAr = 0.02*Main_Corridor_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET Main_Corridor_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Main_Corridor_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Main_Corridor_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "Lobby_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + Lobby_ZN_1_FLR_2_LSr, !- Name + Lobby_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Lobby_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Lobby_ZN_1_FLR_2_Area, !- Name + Lobby_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Lobby_ZN_1_FLR_2_LAr, !- Name + Lobby_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Lobby_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET Lobby_ZN_1_FLR_2_LSr_IP=0.093*Lobby_ZN_1_FLR_2_LSr/Lobby_ZN_1_FLR_2_Area, !- Program Line 1 + IF (Lobby_ZN_1_FLR_2_OSr <= 0) && (Lobby_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET Lobby_ZN_1_FLR_2_LAr = 0.02*Lobby_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET Lobby_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Lobby_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Lobby_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "Mech_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + Mech_ZN_1_FLR_2_LSr, !- Name + Mech_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Mech_ZN_1_FLR_2_OSr, !- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Mech_ZN_1_FLR_2_Area, !- Name + Mech_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Mech_ZN_1_FLR_2_LAr, !- Name + Mech_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Mech_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET Mech_ZN_1_FLR_2_LSr_IP=0.093*Mech_ZN_1_FLR_2_LSr/Mech_ZN_1_FLR_2_Area, !- Program Line 1 + IF (Mech_ZN_1_FLR_2_OSr <= 0) && (Mech_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET Mech_ZN_1_FLR_2_LAr = 0.02*Mech_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET Mech_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Mech_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Mech_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "BATHROOMS_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + BATHROOMS_ZN_1_FLR_2_LSr,!- Name + BATHROOMS_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + BATHROOMS_ZN_1_FLR_2_OSr,!- Name + Corner_Class_1_Pod_1_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + BATHROOMS_ZN_1_FLR_2_Area, !- Name + BATHROOMS_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + BATHROOMS_ZN_1_FLR_2_LAr,!- Name + BATHROOMS_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_BATHROOMS_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET BATHROOMS_ZN_1_FLR_2_LSr_IP=0.093*BATHROOMS_ZN_1_FLR_2_LSr/BATHROOMS_ZN_1_FLR_2_Area, !- Program Line 1 + IF (BATHROOMS_ZN_1_FLR_2_OSr <= 0) && (BATHROOMS_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET BATHROOMS_ZN_1_FLR_2_LAr = 0.02*BATHROOMS_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET BATHROOMS_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_BATHROOMS_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_BATHROOMS_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "Offices_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + Offices_ZN_1_FLR_2_LSr, !- Name + Offices_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + Offices_ZN_1_FLR_2_OSr, !- Name + Offices_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + Offices_ZN_1_FLR_2_Area, !- Name + Offices_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + Offices_ZN_1_FLR_2_LAr, !- Name + Offices_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_Offices_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET Offices_ZN_1_FLR_2_LSr_IP=0.093*Offices_ZN_1_FLR_2_LSr/Offices_ZN_1_FLR_2_Area, !- Program Line 1 + IF (Offices_ZN_1_FLR_2_OSr <= 0) && (Offices_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET Offices_ZN_1_FLR_2_LAr = 0.02*Offices_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET Offices_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_Offices_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_Offices_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 + +!- for zone "LMC_ZN_1_FLR_2" + + EnergyManagementSystem:Sensor, + LMC_ZN_1_FLR_2_LSr, !- Name + Library_Media_Center_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + Zone Lights Electricity Rate; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:Sensor, + LMC_ZN_1_FLR_2_OSr, !- Name + Library_Media_Center_ZN_1_FLR_2, !- Output:Variable or Output:Meter Index Key Name + People Occupant Count; !- Output:Variable or Output:Meter Name + + EnergyManagementSystem:InternalVariable, + LMC_ZN_1_FLR_2_Area, !- Name + Library_Media_Center_ZN_1_FLR_2, !- Internal Data Index Key Name + Zone Floor Area; !- Internal Data Type + + EnergyManagementSystem:Actuator, + LMC_ZN_1_FLR_2_LAr, !- Name + Library_Media_Center_ZN_1_FLR_2_lights, !- Actuated Component Unique Name + Lights, !- Actuated Component Type + Electricity Rate; !- Actuated Component Control Type + + EnergyManagementSystem:Program, + SET_LMC_ZN_1_FLR_2_Light_EMS_Program, !- Name + SET LMC_ZN_1_FLR_2_LSr_IP=0.093*LMC_ZN_1_FLR_2_LSr/LMC_ZN_1_FLR_2_Area, !- Program Line 1 + IF (LMC_ZN_1_FLR_2_OSr <= 0) && (LMC_ZN_1_FLR_2_LSr_IP >= 0.02), !- Program Line 2 + SET LMC_ZN_1_FLR_2_LAr = 0.02*LMC_ZN_1_FLR_2_Area/0.09290304, !- + ELSE, !- + SET LMC_ZN_1_FLR_2_LAr = NULL, !- + ENDIF; !- + + EnergyManagementSystem:ProgramCallingManager, + SET_LMC_ZN_1_FLR_2_Light_EMS_Program_Prog_Manager, !- Name + BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point + SET_LMC_ZN_1_FLR_2_Light_EMS_Program; !- Program Name 1 From 62f0cc70f40dc5729a3587359d50bb330964847a Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 23 Aug 2021 08:21:24 -0600 Subject: [PATCH 20/22] Clean up clang warnings. --- src/EnergyPlus/OutputReportTabular.cc | 2 +- src/EnergyPlus/SurfaceGeometry.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnergyPlus/OutputReportTabular.cc b/src/EnergyPlus/OutputReportTabular.cc index 291eb91ba2a..d7238d99148 100644 --- a/src/EnergyPlus/OutputReportTabular.cc +++ b/src/EnergyPlus/OutputReportTabular.cc @@ -12144,7 +12144,7 @@ void writeVeriSumSpaceTables(EnergyPlusData &state, bool produceTabular, bool pr std::string tags; bool firstTag = true; - for (std::string const tag : curSpace.tags) { + for (std::string const &tag : curSpace.tags) { if (firstTag) { tags += tag; firstTag = false; diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index 1353f63c12e..bdc5ec6cff8 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -14874,7 +14874,7 @@ namespace SurfaceGeometry { } } // Check for any spaces defined only by floor surface(s) and group them - for (auto const zone : state.dataHeatBal->Zone) { + for (auto const &zone : state.dataHeatBal->Zone) { int newEnclosureNum = 0; for (int const spaceNum : zone.spaceIndexes) { int spaceEnclosureNum = 0; From 99449b1a1c3ff29d508c96a3e26122f34f75eaff Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 23 Aug 2021 08:55:50 -0600 Subject: [PATCH 21/22] More efficient setting or representative surface number. --- src/EnergyPlus/DataSurfaces.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/EnergyPlus/DataSurfaces.cc b/src/EnergyPlus/DataSurfaces.cc index b53aad530cd..7e128de3ee8 100644 --- a/src/EnergyPlus/DataSurfaces.cc +++ b/src/EnergyPlus/DataSurfaces.cc @@ -647,10 +647,9 @@ void SurfaceData::set_representative_surface(EnergyPlusData &state, const int Su // Make hash key for this surface (used to determine uniqueness) state.dataSurface->Surface(SurfNum).make_hash_key(state, SurfNum); // Insert surface key into map. If key already exists, it will not be added. - state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey, SurfNum}); // Assign the representative surface number based on the first instance of the identical key state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = - state.dataSurface->RepresentativeSurfaceMap[state.dataSurface->Surface(SurfNum).calcHashKey]; + state.dataSurface->RepresentativeSurfaceMap.insert({state.dataSurface->Surface(SurfNum).calcHashKey, SurfNum}).first->second; } // Functions From 9d201375ff3099cdf43a3ed05c572e4a6515ac72 Mon Sep 17 00:00:00 2001 From: Neal Kruis Date: Mon, 23 Aug 2021 08:56:44 -0600 Subject: [PATCH 22/22] Make separate loop for assigning representative surfaces. --- src/EnergyPlus/SurfaceGeometry.cc | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/EnergyPlus/SurfaceGeometry.cc b/src/EnergyPlus/SurfaceGeometry.cc index bdc5ec6cff8..e68b04c3723 100644 --- a/src/EnergyPlus/SurfaceGeometry.cc +++ b/src/EnergyPlus/SurfaceGeometry.cc @@ -2801,14 +2801,22 @@ namespace SurfaceGeometry { // Initialize run time surface arrays state.dataSurface->SurfActiveConstruction(SurfNum) = state.dataSurface->Surface(SurfNum).Construction; state.dataSurface->Surface(SurfNum).RepresentativeCalcSurfNum = SurfNum; - // Automatic Surface Multipliers: Assign representative heat transfer surfaces - if (state.dataSurface->UseRepresentativeSurfaceCalculations && state.dataSurface->Surface(SurfNum).HeatTransSurf && - state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, "ZoneProperty:UserViewFactors:BySurfaceName") == 0) { - // Conditions where surface always needs to be unique - bool forceUniqueSurface = state.dataSurface->Surface(SurfNum).HasShadeControl || state.dataSurface->SurfWinAirflowSource(SurfNum) || - state.dataConstruction->Construct(state.dataSurface->Surface(SurfNum).Construction).SourceSinkPresent; - if (!forceUniqueSurface) { - state.dataSurface->Surface(SurfNum).set_representative_surface(state, SurfNum); + } + + // Representative surface calculations: Assign representative heat transfer surfaces + if (state.dataSurface->UseRepresentativeSurfaceCalculations && + state.dataInputProcessing->inputProcessor->getNumObjectsFound(state, "ZoneProperty:UserViewFactors:BySurfaceName") == 0) { + for (int zoneNum = 1; zoneNum <= state.dataGlobal->NumOfZones; ++zoneNum) { + int const firstSurf = state.dataHeatBal->Zone(zoneNum).HTSurfaceFirst; + int const lastSurf = state.dataHeatBal->Zone(zoneNum).HTSurfaceLast; + for (int surfNum = firstSurf; surfNum <= lastSurf; surfNum++) { + // Conditions where surface always needs to be unique + bool forceUniqueSurface = state.dataSurface->Surface(surfNum).HasShadeControl || + state.dataSurface->SurfWinAirflowSource(surfNum) || + state.dataConstruction->Construct(state.dataSurface->Surface(surfNum).Construction).SourceSinkPresent; + if (!forceUniqueSurface) { + state.dataSurface->Surface(surfNum).set_representative_surface(state, surfNum); + } } } }